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 }} 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 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