Skip to content

Commit

Permalink
Bump to v28
Browse files Browse the repository at this point in the history
  • Loading branch information
BenElgar committed Oct 25, 2021
1 parent 71225dc commit cde093a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/perform-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,12 @@ jobs:
- run: npm ci
working-directory: ./gui

- name: Get version from VERSION file
id: get_version
run: echo ::set-output name=release_version::$(cat VERSION | tr -d '[:space:]')

- name: Run GoReleaser
run: make release
run: git tag --list && git tag ${{ steps.get_version.outputs.release_version }} && git tag --list && make release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# TODO: Need a custom personal access token to allow publishing to
Expand All @@ -75,9 +79,6 @@ jobs:
# Your GoReleaser Pro key, if you are using the 'goreleaser-pro' distribution
# GORELEASER_KEY: ${{ secrets.GORELEASER_KEY }}

- name: Get version from VERSION file
id: get_version
run: echo ::set-output name=release_version::$(cat VERSION | tr -d '[:space:]')

- name: Update version in CloudFlare K/V
uses: cloudflare/wrangler-action@1.3.0
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2021.10.27
2021.10.28

0 comments on commit cde093a

Please sign in to comment.