github-node-deploy-workflow/.github/workflows/main.yml

40 lines
1.2 KiB
YAML
Raw Normal View History

2023-06-25 04:49:23 +00:00
name: Build/Publish
on:
2023-06-25 05:00:39 +00:00
workflow_call:
2023-06-25 04:49:23 +00:00
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: 18.x
cache: 'npm'
- run: npm ci
- run: npm run build --if-present
2023-06-25 05:44:46 +00:00
- name: Cache build
2023-06-25 04:49:23 +00:00
id: cache
uses: actions/cache/save@v2
2023-06-25 04:49:23 +00:00
with:
# npm cache files are stored in `~/.npm` on Linux/macOS
path: ./
key: cache-${{ github.run_id }}-${{ github.run_attempt }}
2023-06-25 04:49:23 +00:00
publish:
runs-on: ubuntu-latest
needs: build
steps:
- uses: actions/cache/restore@v2
2023-06-25 04:49:23 +00:00
with:
path: .
key: cache-${{ github.run_id }}-${{ github.run_attempt }}
2023-06-25 04:49:23 +00:00
- name: Install SSH key
uses: shimataro/ssh-key-action@v2
with:
key: ${{ secrets.GITEA_SSH_KEY }}
name: gitea # optional
known_hosts: ${{ secrets.GITEA_KNOWN_HOST }}
- run: npm run semantic-release