-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #433 from wuespace/fix/release-pipeline
Fix release pipeline
- Loading branch information
Showing
2 changed files
with
10 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -100,9 +100,13 @@ jobs: | |
steps: | ||
- name: Checkout 📥 | ||
uses: actions/[email protected] | ||
# set GitHub Actions Bot as git user | ||
# see: https://github.com/actions/checkout/pull/1707 | ||
- name: Create Go Version Tag | ||
run: | | ||
tag=${GITHUB_REF#refs/tags/} | ||
git config user.name "github-actions[bot]" | ||
git config user.email "41898282+github-actions[bot]@users.noreply.github.com" | ||
git tag -a "backend-go/$tag" -m "Go Release $tag" | ||
git push origin "backend-go/$tag" | ||
###################### | ||
|
@@ -150,6 +154,7 @@ jobs: | |
node-version: ${{ env.node }} | ||
cache: 'pnpm' | ||
cache-dependency-path: '**/pnpm-lock.yaml' | ||
registry-url: 'https://registry.npmjs.org' | ||
- name: Install dependencies 📚 | ||
run: pnpm install | ||
- name: Build 🏗️ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -100,9 +100,13 @@ jobs: | |
steps: | ||
- name: Checkout 📥 | ||
uses: actions/[email protected] | ||
# set GitHub Actions Bot as git user | ||
# see: https://github.com/actions/checkout/pull/1707 | ||
- name: Create Go Version Tag | ||
run: | | ||
tag=${GITHUB_REF#refs/tags/} | ||
git config user.name "github-actions[bot]" | ||
git config user.email "41898282+github-actions[bot]@users.noreply.github.com" | ||
git tag -a "backend-go/$tag" -m "Go Release $tag" | ||
git push origin "backend-go/$tag" | ||
###################### | ||
|
@@ -150,6 +154,7 @@ jobs: | |
node-version: ${{ env.node }} | ||
cache: 'pnpm' | ||
cache-dependency-path: '**/pnpm-lock.yaml' | ||
registry-url: 'https://registry.npmjs.org' | ||
- name: Install dependencies 📚 | ||
run: pnpm install | ||
- name: Build 🏗️ | ||
|