From 7cb04c452b7b68ec1f886823a96691c05f164609 Mon Sep 17 00:00:00 2001 From: AverageHelper Date: Thu, 3 Oct 2024 17:09:06 -0600 Subject: [PATCH 1/3] chore(ci): Trigger tag push event --- CHANGELOG.md | 7 +++++++ package-lock.json | 4 ++-- package.json | 2 +- 3 files changed, 10 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ffd30e0..aaa5d97 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.13.2] - 2024-10-03 + +### Changed + +- Nothing. Just triggering a CI run for science. + ## [0.13.1] - 2024-10-03 ### Added @@ -263,6 +269,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Development Environment for needed dependencies. +[0.13.2]: https://github.com/BYU-CS-Discord/CSBot/compare/v0.13.1...v0.13.2 [0.13.1]: https://github.com/BYU-CS-Discord/CSBot/compare/v0.13.0...v0.13.1 [0.13.0]: https://github.com/BYU-CS-Discord/CSBot/compare/v0.12.1...v0.13.0 [0.12.1]: https://github.com/BYU-CS-Discord/CSBot/compare/v0.12.0...v0.12.1 diff --git a/package-lock.json b/package-lock.json index d13bad2..7d04ba1 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "csbot", - "version": "0.13.1", + "version": "0.13.2", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "csbot", - "version": "0.13.1", + "version": "0.13.2", "license": "0BSD", "dependencies": { "@discordjs/voice": "0.17.0", diff --git a/package.json b/package.json index 802c6b0..bff35d2 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "csbot", - "version": "0.13.1", + "version": "0.13.2", "private": true, "description": "The One beneath the Supreme Overlord's rule. A bot to help manage the BYU CS Discord, successor to Ze Kaiser (https://github.com/arkenstorm/ze-kaiser)", "keywords": [ From 4f645260ed74ca51df1c334a155818a306f0d712 Mon Sep 17 00:00:00 2001 From: AverageHelper Date: Thu, 3 Oct 2024 17:11:01 -0600 Subject: [PATCH 2/3] fix(ci): Use a personal access token to cut releases --- .github/workflows/create-release.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/create-release.yml b/.github/workflows/create-release.yml index ce4c5f9..4079b26 100644 --- a/.github/workflows/create-release.yml +++ b/.github/workflows/create-release.yml @@ -29,6 +29,8 @@ jobs: # This action doesn't create a new release if the tag already exists uses: softprops/action-gh-release@v1 with: + # Can't use GITHUB_TOKEN for tags, or our deploy workflow won't trigger. See https://docs.github.com/en/actions/security-for-github-actions/security-guides/automatic-token-authentication#using-the-github_token-in-a-workflow + token: ${{ secrets.RELEASE_TOKEN }} tag_name: v${{ steps.changelog.outputs.version }} name: v${{ steps.changelog.outputs.version }} body: ${{ steps.changelog.outputs.description }} From f895b3dda194e8d9fd53fa822f63e6da1dff3dba Mon Sep 17 00:00:00 2001 From: AverageHelper Date: Thu, 3 Oct 2024 17:12:56 -0600 Subject: [PATCH 3/3] chore: Update changelog --- CHANGELOG.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index aaa5d97..dc34aff 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [Unreleased] + +### Fixed + +- Automatic deployment of SemVer tags for our Docker image should now work. + ## [0.13.2] - 2024-10-03 ### Changed @@ -269,6 +275,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Development Environment for needed dependencies. +[Unreleased]: https://github.com/BYU-CS-Discord/CSBot/compare/v0.13.2...HEAD [0.13.2]: https://github.com/BYU-CS-Discord/CSBot/compare/v0.13.1...v0.13.2 [0.13.1]: https://github.com/BYU-CS-Discord/CSBot/compare/v0.13.0...v0.13.1 [0.13.0]: https://github.com/BYU-CS-Discord/CSBot/compare/v0.12.1...v0.13.0