-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a4b67e9
commit 905134c
Showing
2 changed files
with
64 additions
and
55 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 |
---|---|---|
@@ -0,0 +1,64 @@ | ||
name: Create Archive on Tag | ||
|
||
on: | ||
push: | ||
tags: | ||
- '*' | ||
|
||
jobs: | ||
build_and_archive: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v4 | ||
|
||
- name: Set up Node.js 21 | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: '21' | ||
|
||
- name: Enable Corepack | ||
working-directory: client | ||
run: corepack enable | ||
|
||
- name: Install dependencies | ||
working-directory: client | ||
run: yarn install | ||
|
||
- name: Build project | ||
working-directory: client | ||
run: yarn build | ||
|
||
- name: Create archives of dist folder | ||
working-directory: client | ||
run: | | ||
zip -r dist.zip dist | ||
tar -czvf dist.tar.gz dist | ||
- name: Upload archives as artifacts | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: dist.zip | ||
path: client/dist.zip | ||
|
||
- name: Upload tar.gz as artifact | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: dist.tar.gz | ||
path: client/dist.tar.gz | ||
|
||
- name: Create GitHub release | ||
uses: elgohr/Github-Release-Action@v5 | ||
env: | ||
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
title: ${{ github.ref_name }} | ||
|
||
- name: Upload dist.zip and dist.tar.gz to the release | ||
uses: svenstaro/upload-release-action@v2 | ||
with: | ||
file: client/dist.* | ||
file_glob: true | ||
tag: ${{ github.ref_name }} | ||
repo_token: ${{ secrets.GITHUB_TOKEN }} |
This file was deleted.
Oops, something went wrong.