From: openocd-gerrit <ope...@us...> - 2025-05-01 15:36:12
|
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "Main OpenOCD repository". The branch, master has been updated via afbd01b0a46f3a81fe6076c002ad66973dcfb64c (commit) from d567824f2ac267f61944aa839911f0b5bee98c4a (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit afbd01b0a46f3a81fe6076c002ad66973dcfb64c Author: Samuel Obuch <sam...@es...> Date: Thu Feb 13 14:28:27 2025 +0100 github/workflow: fix warnings for github actions - update runner to ubuntu-latest - pass GITHUB_TOKEN to delete-tag-and-release as input Change-Id: I83d69cfd7af7c44e67b1115ac843a0b41d6f87b9 Signed-off-by: Samuel Obuch <sam...@es...> Reviewed-on: https://review.openocd.org/c/openocd/+/8756 Reviewed-by: Antonio Borneo <bor...@gm...> Tested-by: jenkins diff --git a/.github/workflows/snapshot.yml b/.github/workflows/snapshot.yml index 36b2f3bb3..755e8f4e1 100644 --- a/.github/workflows/snapshot.yml +++ b/.github/workflows/snapshot.yml @@ -8,7 +8,7 @@ name: OpenOCD Snapshot jobs: package: - runs-on: [ubuntu-20.04] + runs-on: [ubuntu-latest] env: DL_DIR: ../downloads BUILD_DIR: ../build @@ -102,8 +102,8 @@ jobs: # add missing dlls cd $HOST-root/usr cp `$HOST-gcc --print-file-name=libwinpthread-1.dll` ./bin/ - # required by libftdi1.dll. For the gcc-mingw-10.3.x or later "libgcc_s_dw2-1.dll" will need to be copied. - cp `$HOST-gcc --print-file-name=libgcc_s_sjlj-1.dll` ./bin/ + # required by libftdi1.dll + cp `$HOST-gcc --print-file-name=libgcc_s_dw2-1.dll` ./bin/ # prepare the artifact ARTIFACT="openocd-${OPENOCD_TAG}-${HOST}.tar.gz" tar -czf $ARTIFACT * @@ -119,8 +119,7 @@ jobs: with: delete_release: true tag_name: ${{ env.RELEASE_NAME }} - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + github_token: ${{ secrets.GITHUB_TOKEN }} - name: Create Release uses: ncipollo/release-action@v1 with: ----------------------------------------------------------------------- Summary of changes: .github/workflows/snapshot.yml | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) hooks/post-receive -- Main OpenOCD repository |