From 34ebdad17f09483086b45f83400046f45d9ae4fc Mon Sep 17 00:00:00 2001 From: cytopia Date: Thu, 27 Oct 2022 12:59:43 +0200 Subject: [PATCH 1/3] Fix set-output deprecations --- action.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/action.yml b/action.yml index 47ae0c2..ca3bd0a 100644 --- a/action.yml +++ b/action.yml @@ -57,8 +57,8 @@ runs: ### ### Output matrix ### - echo "::set-output name=matrix::[]" - echo "::set-output name=has_refs::false" + echo "matrix=[]" >> $GITHUB_OUTPUT + echo "has_refs=false" >> $GITHUB_OUTPUT echo "matrix=[]" echo "has_refs=false" else @@ -121,7 +121,7 @@ runs: ### ### Set final output for 'matrix' ### - echo "::set-output name=matrix::${JSON}" + echo "matrix=${JSON}" >> $GITHUB_OUTPUT ### ### Set 'has_refs' @@ -131,7 +131,7 @@ runs: else HAS_REFS="true" fi - echo "::set-output name=has_refs::${HAS_REFS}" + echo "has_refs=${HAS_REFS}" >> $GITHUB_OUTPUT ### ### Output matrix From a9b20d42405fcebd51bc574ad4814e2441dc9bd3 Mon Sep 17 00:00:00 2001 From: cytopia Date: Thu, 27 Oct 2022 12:59:56 +0200 Subject: [PATCH 2/3] Update release drafter --- .github/workflows/release-drafter.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release-drafter.yml b/.github/workflows/release-drafter.yml index f2051f7..1a63d7e 100644 --- a/.github/workflows/release-drafter.yml +++ b/.github/workflows/release-drafter.yml @@ -1,3 +1,4 @@ +--- name: Release Drafter on: @@ -15,4 +16,4 @@ jobs: with: publish: true env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + GITHUB_TOKEN: ${{ secrets.RELEASE_DRAFTER_TOKEN }} From 4ba748c6bd5f3395eb340dd0660f2c9d999b99b6 Mon Sep 17 00:00:00 2001 From: cytopia Date: Thu, 27 Oct 2022 13:00:08 +0200 Subject: [PATCH 3/3] Update README --- README.md | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index c99ebd9..c217cd7 100644 --- a/README.md +++ b/README.md @@ -91,15 +91,21 @@ updates: ## :octocat: [cytopia](/~https://github.com/cytopia) GitHub Actions -| Name | Description | -|------------------------------|-------------| -| [docker-tag-action] | Determines Docker tags based on git branch, commit or git tag | -| [git-ref-matrix-action] | Create stringified JSON list of git refs to be used as a build matrix | -| [shell-command-retry-action] | Retries shell commands to avoid failing pipelines due to network issues | +| Name | Description | +|----------------------------------|-------------| +| [docker-tag-action] | Determines Docker tags based on git branch, commit or git tag | +| [git-ref-matrix-action] | Create stringified JSON list of git refs to be used as a build matrix | +| [shell-command-retry-action] | Retries shell commands to avoid failing pipelines due to network issues | +| [upload-artifact-verify-action] | Upload artifact and verifies it by downloading it again | +| [upload-artifact-retry-action] | Retries `upload-artifact-verify-action` | +| [download-artifact-retry-action] | Download artifact with retry functionality | [docker-tag-action]: /~https://github.com/cytopia/docker-tag-action [git-ref-matrix-action]: /~https://github.com/cytopia/git-ref-matrix-action [shell-command-retry-action]: /~https://github.com/cytopia/shell-command-retry-action +[upload-artifact-verify-action]: /~https://github.com/cytopia/upload-artifact-verify-action +[upload-artifact-retry-action]: /~https://github.com/cytopia/upload-artifact-retry-action +[download-artifact-retry-action]: /~https://github.com/cytopia/download-artifact-retry-action ## :page_facing_up: License