From 392901f6f9ac8112e50ffb79e32068c3af6bbff2 Mon Sep 17 00:00:00 2001 From: Scott Date: Sun, 28 Jan 2024 09:54:38 -0500 Subject: [PATCH 1/8] ci: changed action for tag. I believe it was causing errors --- .github/workflows/release.yml | 16 ++++------------ 1 file changed, 4 insertions(+), 12 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index f015248..6d177ba 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -21,18 +21,10 @@ jobs: with: ref: ${{ github.sha }} ## this seems to be required due to https://github.com/anothrNick/github-tag-action/issues/266 fetch-depth: 0 - - name: 'Automated Version Bump' - id: version-bump - uses: anothrNick/github-tag-action@1.36.0 - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - WITH_V: true - DEFAULT_BUMP: patch - PRERELEASE: false - RELEASE_BRANCHES: rolling - DEFAULT_BRANCH: rolling - pre_release: false - PRERELEASE_SUFFIX: '' + - name: Bump version and push tag + uses: hennejg/github-tag-action@v4.1.jh1 + with: + github_token: ${{ secrets.GITHUB_TOKEN } - name: Changelog uses: scottbrenner/generate-changelog-action@master id: Changelog From 2b3bfd96c2d3a2a56902b9dbe3619ba4cfd05948 Mon Sep 17 00:00:00 2001 From: Scott Date: Sun, 28 Jan 2024 09:55:49 -0500 Subject: [PATCH 2/8] ci: missing } --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 6d177ba..a0f184e 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -24,7 +24,7 @@ jobs: - name: Bump version and push tag uses: hennejg/github-tag-action@v4.1.jh1 with: - github_token: ${{ secrets.GITHUB_TOKEN } + github_token: ${{ secrets.GITHUB_TOKEN }} - name: Changelog uses: scottbrenner/generate-changelog-action@master id: Changelog From 96e786b5cb92669fd86e954d689bd914ee378134 Mon Sep 17 00:00:00 2001 From: Scott Date: Sun, 28 Jan 2024 09:59:23 -0500 Subject: [PATCH 3/8] ci: testing some things --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index a0f184e..cc0ddb8 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -22,7 +22,7 @@ jobs: ref: ${{ github.sha }} ## this seems to be required due to https://github.com/anothrNick/github-tag-action/issues/266 fetch-depth: 0 - name: Bump version and push tag - uses: hennejg/github-tag-action@v4.1.jh1 + uses: hennejg/github-tag-action@v4.3.1 with: github_token: ${{ secrets.GITHUB_TOKEN }} - name: Changelog From 07ab7968d020a83a7c056527c8c13806bca5d805 Mon Sep 17 00:00:00 2001 From: Scott Date: Sun, 28 Jan 2024 10:03:20 -0500 Subject: [PATCH 4/8] ci: fixing self inflicted error where I forgot to put an ID in --- .github/workflows/release.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index cc0ddb8..8819d87 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -22,6 +22,7 @@ jobs: ref: ${{ github.sha }} ## this seems to be required due to https://github.com/anothrNick/github-tag-action/issues/266 fetch-depth: 0 - name: Bump version and push tag + id: version-bump uses: hennejg/github-tag-action@v4.3.1 with: github_token: ${{ secrets.GITHUB_TOKEN }} From 89f3ae8b56291bf46ae4651cbc063bf796b4a80b Mon Sep 17 00:00:00 2001 From: Scott Date: Sun, 28 Jan 2024 10:07:02 -0500 Subject: [PATCH 5/8] ci: fixing to make the release branch rolling --- .github/workflows/release.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 8819d87..0b1c2cd 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -26,6 +26,7 @@ jobs: uses: hennejg/github-tag-action@v4.3.1 with: github_token: ${{ secrets.GITHUB_TOKEN }} + release_branches: rolling - name: Changelog uses: scottbrenner/generate-changelog-action@master id: Changelog From 29dece3d9b84b96db40f01a5e24c89dbddc1f20f Mon Sep 17 00:00:00 2001 From: Scott Date: Sun, 28 Jan 2024 10:11:07 -0500 Subject: [PATCH 6/8] major: testing updating major --- .github/workflows/release.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 0b1c2cd..ed1efe0 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -43,3 +43,4 @@ jobs: env: GITHUB_REPOSITORY: ${{ github.repository }} + From 4ed6a1cdd398667fd34b8ac8c10957211b85df22 Mon Sep 17 00:00:00 2001 From: Scott Date: Sun, 28 Jan 2024 10:13:57 -0500 Subject: [PATCH 7/8] BREAKING CHANGE: removed changelog action --- .github/workflows/release.yml | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index ed1efe0..19d871a 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -27,11 +27,6 @@ jobs: with: github_token: ${{ secrets.GITHUB_TOKEN }} release_branches: rolling - - name: Changelog - uses: scottbrenner/generate-changelog-action@master - id: Changelog - env: - REPO: ${{ github.repository }} - name: Create Release uses: softprops/action-gh-release@v1 with: @@ -41,6 +36,4 @@ jobs: tag_name: ${{ steps.version-bump.outputs.new_tag }} prerelease: false env: - GITHUB_REPOSITORY: ${{ github.repository }} - - + GITHUB_REPOSITORY: ${{ github.repository }} \ No newline at end of file From c7584ade0d25f13f92e3b6e6d5dc4bb90f033721 Mon Sep 17 00:00:00 2001 From: Scott Date: Sun, 28 Jan 2024 10:36:34 -0500 Subject: [PATCH 8/8] ci: reset commit and removed changelog --- .github/workflows/release.yml | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index ed1efe0..ad1f703 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -19,7 +19,7 @@ jobs: - name: Checkout code uses: actions/checkout@v3 with: - ref: ${{ github.sha }} ## this seems to be required due to https://github.com/anothrNick/github-tag-action/issues/266 + ref: ${{ github.sha }} fetch-depth: 0 - name: Bump version and push tag id: version-bump @@ -27,11 +27,6 @@ jobs: with: github_token: ${{ secrets.GITHUB_TOKEN }} release_branches: rolling - - name: Changelog - uses: scottbrenner/generate-changelog-action@master - id: Changelog - env: - REPO: ${{ github.repository }} - name: Create Release uses: softprops/action-gh-release@v1 with: