π lets attempt a forced deployment #105
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: Deploy with Fume | |
on: | |
push: | |
branches: [ staging, production ] | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 14 | |
- uses: actions/checkout@v2 | |
- name: Where is nodejs | |
run: which node | |
- name: See Node Version | |
run: node --version | |
- name: Install our dependencies | |
run: yarn | |
- name: Generate our medium feed | |
run: yarn feed | |
- name: Generate sheets | |
run: yarn sheets | |
- name: Generate our routes | |
run: yarn route | |
- uses: fumeapp/action@master | |
with: | |
token: ${{ secrets.FUME_TOKEN }} | |
environment: ${GITHUB_REF##*/} | |