Created
March 12, 2024 19:31
-
-
Save acidjazz/19ddf162f9fc940812f89e3734e9faf9 to your computer and use it in GitHub Desktop.
fume example action
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 | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
environment: | |
name: staging | |
url: https://url-to-staging.com | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: fumeapp/action@master | |
with: | |
token: ${{ secrets.FUME_TOKEN }} | |
environment: staging |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment