π Publish #406
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: π Publish | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- master | |
jobs: | |
publish_job: | |
name: π Publish | |
runs-on: ubuntu-latest | |
steps: | |
- name: π₯ Checkout repository | |
uses: actions/checkout@v2 | |
- name: 𧱠Setup node | |
uses: actions/setup-node@v2 | |
with: | |
node-version: '16' | |
- name: π¦ Install packages | |
run: npm install | |
- name: π Build assets | |
run: npm run build | |
env: | |
GHOST_API_URL: ${{ secrets.GHOST_API_URL }} | |
GHOST_CONTENT_API_KEY: ${{ secrets.GHOST_CONTENT_API_KEY }} | |
AIRTABLE_API_KEY: ${{ secrets.AIRTABLE_API_KEY }} | |
AIRTABLE_BASE: ${{ secrets.AIRTABLE_BASE }} | |
- name: π Publish to Fission! | |
uses: fission-suite/publish-action@v1 | |
with: | |
machine_key: ${{ secrets.MACHINE_KEY }} |