-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' of https://github.com/ResilientApp/ResVault
- Loading branch information
Showing
2 changed files
with
46 additions
and
25 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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,46 @@ | ||
name: Release CI | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v2 | ||
|
||
- name: Setup Node.js | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: 14 # Specify the Node.js version you want to use | ||
|
||
- name: Install dependencies | ||
run: npm install | ||
|
||
- name: Build and test | ||
run: npm run build | ||
|
||
- name: Create Temporary Tag | ||
run: | | ||
TAG_NAME="Release-$(date +'%Y%m%d%H%M%S')" | ||
echo "::set-output name=tag::$TAG_NAME" | ||
id: create_tag | ||
|
||
- name: Create ZIP Archive | ||
run: | | ||
cd build | ||
zip -r build.zip . | ||
shell: bash | ||
|
||
- name: Create Release | ||
id: create_release | ||
uses: softprops/action-gh-release@v1 | ||
with: | ||
files: ./build/build.zip | ||
tag_name: ${{ steps.create_tag.outputs.tag }} | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |