Write on the margins of the internet. Powered by the AT Protocol. margin.at
extension web atproto comments

deploy workflow

+24 -2
+22
.github/workflows/deploy.yml
··· 1 + name: Deploy 2 + 3 + on: 4 + workflow_run: 5 + workflows: ["Build and Publish Docker Image"] 6 + types: 7 + - completed 8 + branches: 9 + - main 10 + 11 + jobs: 12 + deploy: 13 + runs-on: blacksmith-2vcpu-ubuntu-2404 14 + if: ${{ github.event.workflow_run.conclusion == 'success' }} 15 + steps: 16 + - name: Deploy to Dokku 17 + uses: appleboy/ssh-action@master 18 + with: 19 + host: ${{ secrets.DOKKU_HOST }} 20 + username: deploy 21 + key: ${{ secrets.DEPLOY_KEY }} 22 + script: echo deploy
+2 -2
.github/workflows/sponsors.yml
··· 2 2 on: 3 3 workflow_dispatch: 4 4 schedule: 5 - - cron: '30 15 * * 0-6' 5 + - cron: "30 15 * * 0-6" 6 6 permissions: 7 7 contents: write 8 8 jobs: ··· 25 25 uses: JamesIves/github-pages-deploy-action@v4 26 26 with: 27 27 branch: main 28 - folder: '.' 28 + folder: "."