chore(release): 1.29.0 #72
Workflow file for this run
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
name: RELEASE | |
on: | |
push: | |
tags: | |
- 'v*' | |
jobs: | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
cache: 'npm' | |
- name: Install dependencies | |
run: | | |
npm ci | |
- name: Run lint | |
run: | | |
npm run lint -- --no-fix | |
- name: Run tests | |
run: | | |
npm run test:unit | |
- name: Run circular references check | |
run: | | |
npm run circular-check | |
- name: Build | |
run: | | |
npm run build | |
- name: Create Artifact | |
run: | | |
cd ./dist | |
zip -r fluidd.zip ./ | |
cd .. | |
- name: Get version from tag | |
id: tag_name | |
run: | | |
echo "current_version=${GITHUB_REF#refs/tags/v}" >> $GITHUB_OUTPUT | |
- name: Read ChangeLog | |
uses: mindsers/[email protected] | |
id: changelog | |
with: | |
validation_depth: 1 | |
version: ${{ steps.tag_name.outputs.current_version }} | |
path: ./CHANGELOG.md | |
- name: Create Release | |
id: create_release | |
uses: actions/create-release@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
tag_name: ${{ github.ref }} | |
release_name: ${{ github.ref }} | |
body: | | |
${{ steps.changelog.outputs.changes }} | |
draft: true | |
prerelease: false | |
- name: Upload Asset | |
id: upload-release-asset | |
uses: actions/upload-release-asset@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
upload_url: ${{ steps.create_release.outputs.upload_url }} | |
asset_path: ./dist/fluidd.zip | |
asset_name: fluidd.zip | |
asset_content_type: application/zip | |
- name: Publish Release | |
uses: eregon/publish-release@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
release_id: ${{ steps.create_release.outputs.id }} | |
- name: Prepare Deploy | |
run: | | |
rm ./dist/fluidd.zip | |
cp ./server/config.json ./dist/config.json | |
- name: Deploy to Host | |
env: | |
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} | |
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | |
run: | | |
npm run deploy:host |