Skip to content

🐋 upd. dockerfile #71

🐋 upd. dockerfile

🐋 upd. dockerfile #71

Workflow file for this run

name: ☁️ Deploy to the cloud
on:
workflow_dispatch:
push:
branches:
# - master
- gamedig-next
jobs:
deploy:
name: 🚀 Deploy app
runs-on: ubuntu-latest
env:
FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }}
steps:
- uses: actions/checkout@v3
name: 🚚 Get latest code
with:
fetch-depth: 0
- uses: superfly/flyctl-actions/setup-flyctl@master
- name: Set app name
run: |
if [[ -n "${{ secrets.FLY_APP_NAME }}" ]]; then
echo "APP_NAME=${{ secrets.FLY_APP_NAME }}" >> $GITHUB_ENV
else
echo "APP_NAME=${REPO_OWNER,,}-gsw" >> $GITHUB_ENV
fi
env:
REPO_OWNER: '${{ github.repository_owner }}'
- name: 🛩 Deploy to fly.io
run: flyctl deploy --remote-only --auto-confirm --region ${{ secrets.FLY_REGION }} --app ${{ env.APP_NAME }}