Skip to content

Commit

Permalink
Fix missing checkout, clear CF cache via builder
Browse files Browse the repository at this point in the history
  • Loading branch information
Tackx committed Jun 15, 2024
1 parent f871655 commit c28569f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/deployment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ jobs:
runs-on: ${{ vars['PROD_RUNNER_LABEL'] }}
needs: [ push_image ]
steps:
- uses: actions/checkout@v4
- name: Deploy
env:
APP_NAME: ${{ secrets.APP_NAME }}
Expand All @@ -49,7 +50,7 @@ jobs:
run: make run login=${{ secrets.REGISTRY_LOGIN }} password=${{ secrets.REGISTRY_PASSWORD }} registryUrl=${{ secrets.REGISTRY_URL }} appName=${{ secrets.APP_NAME }}

clear_cf_cache:
runs-on: ${{ vars['PROD_RUNNER_LABEL'] }}
runs-on: ${{ vars['BUILD_RUNNER_LABEL'] }}
needs: [ deploy ]
steps:
- name: Clear Cloudflare cache
Expand Down

0 comments on commit c28569f

Please sign in to comment.