From 0c0ce0c21d1aaad07b0bfdf995b1a1b2132f0249 Mon Sep 17 00:00:00 2001 From: Eric Scouten Date: Thu, 20 Oct 2022 16:45:22 -0700 Subject: [PATCH] (IGNORE) Track warnings generated during last publish workflow (#91) --- .github/workflows/publish.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index c94723c..799aa04 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -17,12 +17,16 @@ jobs: - name: Get latest existing tag uses: actions-ecosystem/action-get-latest-tag@v1 + ## NEEDS UPDATE for set-output deprecation. + ## See https://github.com/actions-ecosystem/action-get-latest-tag/issues/25. id: get-latest-tag with: semver_only: true - name: Set new version uses: paulhatch/semantic-version@v4.0.2 + ## NEEDS UPDATE for set-output deprecation. + ## See https://github.com/PaulHatch/semantic-version/issues/66. id: set-version with: tag_prefix: "v" @@ -32,6 +36,8 @@ jobs: - name: Generate changelog since last tag uses: mathiasvr/command-output@v1 + ## NEEDS UPDATE for set-output deprecation. + ## See https://github.com/mathiasvr/command-output/issues/4. id: changelog with: run: git log --format="* %s" ${{ steps.get-latest-tag.outputs.tag }}..HEAD | { grep -v "(IGNORE)" || :; } @@ -80,6 +86,8 @@ jobs: - name: Commit Cargo.toml and changelog uses: stefanzweifel/git-auto-commit-action@v4 + ## NEEDS UPDATE for set-output deprecation. + ## See https://github.com/stefanzweifel/git-auto-commit-action/issues/250. id: commit with: commit_message: Prepare ${{ steps.set-version.outputs.version }} release