We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a28bb8d commit b141328Copy full SHA for b141328
.github/workflows/release-project.yml
@@ -0,0 +1,21 @@
1
+name: Release project
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - main
7
8
+# Limit token permissions for security
9
+permissions: read-all
10
11
+jobs:
12
+ release:
13
+ # This job outputs env variables `previous_version` and `current_version`.
14
+ # Only give permissions for this job.
15
+ permissions:
16
+ contents: write
17
+ uses: seedcase-project/.github/.github/workflows/reusable-release-project.yml@main
18
+ with:
19
+ app-id: ${{ vars.UPDATE_VERSION_APP_ID }}
20
+ secrets:
21
+ update-version-gh-token: ${{ secrets.UPDATE_VERSION_TOKEN }}
0 commit comments