From 956ea6d107255ad263b3f23cb7e9322b10c8c6fe Mon Sep 17 00:00:00 2001 From: Shiv Jha-Mathur Date: Wed, 14 Feb 2024 17:39:42 +0530 Subject: [PATCH 1/2] ci: tag major and minor versions on release too --- .github/workflows/release-please.yml | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release-please.yml b/.github/workflows/release-please.yml index a0e4a03..f90aea4 100644 --- a/.github/workflows/release-please.yml +++ b/.github/workflows/release-please.yml @@ -13,6 +13,23 @@ jobs: release-please: runs-on: ubuntu-latest steps: - - uses: google-github-actions/release-please-action@v4 + - name: Run Release Please + uses: google-github-actions/release-please-action@v4 with: token: ${{ secrets.RELEASE_PLEASE_GITHUB_TOKEN }} + id: release + - uses: actions/checkout@v4 + - name: Tag major and minor versions + if: ${{ steps.release.outputs.release_created }} + run: | + git config user.name github-actions[bot] + git config user.email 41898282+github-actions[bot]@users.noreply.github.com + git remote add gh-token "https://${{ secrets.GITHUB_TOKEN }}@github.com/google-github-actions/release-please-action.git" + git tag -d v${{ steps.release.outputs.major }} || true + git tag -d v${{ steps.release.outputs.major }}.${{ steps.release.outputs.minor }} || true + git push origin :v${{ steps.release.outputs.major }} || true + git push origin :v${{ steps.release.outputs.major }}.${{ steps.release.outputs.minor }} || true + git tag -a v${{ steps.release.outputs.major }} -m "Release v${{ steps.release.outputs.major }}" + git tag -a v${{ steps.release.outputs.major }}.${{ steps.release.outputs.minor }} -m "Release v${{ steps.release.outputs.major }}.${{ steps.release.outputs.minor }}" + git push origin v${{ steps.release.outputs.major }} + git push origin v${{ steps.release.outputs.major }}.${{ steps.release.outputs.minor }} From 7ffafe7388ac3a1e0c2dd3dc939bcc1138c62f01 Mon Sep 17 00:00:00 2001 From: Shiv Jha-Mathur Date: Wed, 14 Feb 2024 17:55:44 +0530 Subject: [PATCH 2/2] ci: upload release artifacts --- .github/workflows/release-please.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/.github/workflows/release-please.yml b/.github/workflows/release-please.yml index f90aea4..0f5315f 100644 --- a/.github/workflows/release-please.yml +++ b/.github/workflows/release-please.yml @@ -33,3 +33,23 @@ jobs: git tag -a v${{ steps.release.outputs.major }}.${{ steps.release.outputs.minor }} -m "Release v${{ steps.release.outputs.major }}.${{ steps.release.outputs.minor }}" git push origin v${{ steps.release.outputs.major }} git push origin v${{ steps.release.outputs.major }}.${{ steps.release.outputs.minor }} + outputs: + release_created: ${{ steps.release.outputs.release_created }} + tag_name: ${{ steps.release.outputs.tag_name }} + build-and-upload: + needs: [release-please] + if: ${{ jobs.release-please.outputs.release_created }} + strategy: + matrix: + os: [ubuntu-latest, windows-latest] + runs-on: ${{ matrix.os }} + steps: + - uses: actions/setup-go@v5 + - uses: actions/checkout@v4 + - run: | + go build . + - name: Upload release artifact + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + run: | + gh release upload ${{ jobs.release-please.outputs.tag_name }} ./helm-kubeconform-action*