build(app): fix docker image access to public folder #347
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Supprime l'app de test de la branche | |
on: | |
pull_request: | |
types: | |
- closed | |
jobs: | |
destroy-test-app: | |
name: Supprime l'app de test | |
environment: preprod | |
runs-on: ubuntu-latest | |
timeout-minutes: 5 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: earthly/actions-setup@v1 | |
with: | |
github-token: ${{ secrets.GH_TOKEN }} | |
version: ^0.8.0 | |
- name: Login into registry | |
run: docker login ghcr.io/territoiresentransitions --username "${{ secrets.GH_USER }}" --password "${{ secrets.GH_TOKEN }}" | |
- name: Deploy test app on Koyeb | |
run: > | |
earthly | |
--use-inline-cache | |
+app-destroy-test | |
--KOYEB_API_KEY=${{ secrets.KOYEB_API_KEY }} |