-
Notifications
You must be signed in to change notification settings - Fork 2
38 lines (37 loc) · 1.75 KB
/
workflow.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
name: Packaging
on:
push:
branches: [main]
jobs:
update-dist-and-release:
name: Update dist files and release
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: yarn install
- run: yarn build
- uses: stefanzweifel/[email protected]
with:
file_pattern: dist/**
commit_message: 'chore(dist): Update dist [automated commit]'
commit_user_name: cobraz
commit_user_email: [email protected]
- uses: GoogleCloudPlatform/[email protected]
id: release
with:
token: ${{ secrets.PERSONAL_GITHUB_TOKEN }}
release-type: node
- name: tag major and patch versions
if: ${{ steps.release.outputs.release_created }}
run: |
git config user.name cobraz
git config user.email [email protected]
git remote add gh-token "https://${{ secrets.GH_TOKEN }}@github.com/bjerkio/kopier.git"
git tag -d v${{ steps.release.outputs.major }} || true
git tag -d v${{ steps.release.outputs.major }}.${{ steps.release.outputs.minor }} || true
git push origin :v${{ steps.release.outputs.major }} || true
git push origin :v${{ steps.release.outputs.major }}.${{ steps.release.outputs.minor }} || true
git tag -a v${{ steps.release.outputs.major }} -m "Release v${{ steps.release.outputs.major }}"
git tag -a v${{ steps.release.outputs.major }}.${{ steps.release.outputs.minor }} -m "Release v${{ steps.release.outputs.major }}.${{ steps.release.outputs.minor }}"
git push origin v${{ steps.release.outputs.major }}
git push origin v${{ steps.release.outputs.major }}.${{ steps.release.outputs.minor }}