Skip to content

chore: bump version to v1.4.3 #101

chore: bump version to v1.4.3

chore: bump version to v1.4.3 #101

Workflow file for this run

name: Deploy
on:
push:
tags:
- 'v*'
jobs:
gh-release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '22.x'
- name: Build App
run: |
if [ -e yarn.lock ]; then
yarn install --immutable
yarn build
elif [ -e package-lock.json ]; then
npm ci --no-optional
npm run build
else
npm i --no-optional
npm run build
fi
env:
NODE_OPTIONS: --openssl-legacy-provider
- name: Deploy to GitHub Pages (in another repo)
uses: cpina/github-action-push-to-another-repository@main
env:
SSH_DEPLOY_KEY: ${{ secrets.SSH_DEPLOY_KEY }}
with:
source-directory: 'dist'
destination-github-username: 'arcomage'
destination-repository-name: 'arcomage.github.io'
user-email: tomchen.org@gmail.com
target-branch: gh-pages