Skip to content

Instantly share code, notes, and snippets.

@acidjazz
Created July 22, 2021 09:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save acidjazz/9e04a1254508c0a6b502e5f8d6335993 to your computer and use it in GitHub Desktop.
Save acidjazz/9e04a1254508c0a6b502e5f8d6335993 to your computer and use it in GitHub Desktop.
develop and master
on:
push:
branches:
- develop
jobs:
fume-develop:
name: Deploy with Fume
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: fumeapp/action@master
with:
token: {{ secrets.FUME_TOKEN }}
environment: staging
@acidjazz
Copy link
Author

then for master:

on:
  push:
    branches:
    - master
jobs:
  fume-develop:
    name: Deploy with Fume
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v1
      - uses: fumeapp/action@master
        with:
          token: {{ secrets.FUME_TOKEN }}
          environment: master

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment