Skip to content

Commit

Permalink
Draft release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
p0deje committed Apr 12, 2024
1 parent c776e11 commit 7d9487b
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
- main

concurrency:
group: ${{ github.ref }}
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
Expand Down
26 changes: 26 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Release
on:
workflow_dispatch:
inputs:
tag:
description: Tag to release
required: true
default: 0.0.0

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}

jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
cache: npm
node-version-file: package.json
- run: npm build
- run: |
git commit -am "Release ${{ inputs.tag }}"
git push
gh release create ${{ inputs.tag }} --generate-notes
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -216,6 +216,10 @@ To build action, run the following command:
$ npm run build
```

## Release

Use [Release][10] workflow to cut a new release.


[1]: https://github.com/bazelbuild/bazelisk
[2]: https://bazel.build/remote/caching#disk-cache
Expand All @@ -226,3 +230,4 @@ $ npm run build
[7]: https://github.com/bazelbuild/bazelisk/blob/master/README.md#how-does-bazelisk-know-which-bazel-version-to-run
[8]: https://github.com/actions/runner-images/pull/490
[9]: https://bazel.build/reference/command-line-reference#flag--google_credentials
[10]: https://github.com/bazel-contrib/setup-bazel/actions/workflows/release.yml

0 comments on commit 7d9487b

Please sign in to comment.