diff options
author | Melody Horn <melody@boringcactus.com> | 2022-08-03 00:40:53 -0600 |
---|---|---|
committer | Melody Horn <melody@boringcactus.com> | 2022-08-03 00:40:53 -0600 |
commit | 408841c69246530c5ccb41d7b38b53a6bda3bb03 (patch) | |
tree | f1fc7dd27d336df911a30816578746d83fcbb8d1 /.github/workflows | |
parent | 76f48606cdf898cdfdc2866b87d9504e4082baaf (diff) | |
download | pig.observer-408841c69246530c5ccb41d7b38b53a6bda3bb03.tar.gz pig.observer-408841c69246530c5ccb41d7b38b53a6bda3bb03.zip |
if you cant beat em join em
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/deploy-dev.yml | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/.github/workflows/deploy-dev.yml b/.github/workflows/deploy-dev.yml new file mode 100644 index 0000000..aac1252 --- /dev/null +++ b/.github/workflows/deploy-dev.yml @@ -0,0 +1,19 @@ +name: Fly Deploy Dev +on: + push: + branches: + - master + - main +jobs: + deploy: + name: Deploy app + environment: + name: dev + url: https://dev.pig.observer + runs-on: ubuntu-latest + env: + FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }} + steps: + - uses: actions/checkout@v2 + - uses: superfly/flyctl-actions/setup-flyctl@master + - run: flyctl deploy --remote-only |