Skip to content

Update README.md (#106) #12

Update README.md (#106)

Update README.md (#106) #12

Workflow file for this run

name: Deploy
on:
push:
branches: ["main"]
jobs:
deploy:
name: Deploy
runs-on: ubuntu-latest
env:
FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }}
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
steps:
- uses: actions/checkout@v3
- run: npm install
- run: npm run build
- uses: superfly/[email protected]
with:
args: "deploy"
- if: success()
uses: slackapi/[email protected]
with:
payload: |
{
"text": "deployed <https://github.com/${{ github.repository }}/commit/${{ github.sha}}|${{ github.sha }}>"
}
- if: failure()
uses: slackapi/[email protected]
with:
payload: |
{
"text": "deploy failed! <https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}|inspect the job>"
}