release-test #7
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: release-test | |
on: | |
workflow_run: | |
workflows: | |
- docker-release-build | |
types: | |
- completed | |
env: | |
API_URL: ${{ vars.CLOUD_URL }} | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Wait for and download docker image artifact | |
uses: ./.github/actions/download-docker-artifact | |
with: | |
repo-read-token: ${{ secrets.GH_PAT }} | |
build-type: 'release' | |
- name: Release test | |
run: | | |
docker run -d -p 8080:8080 --name django_app -e API_URL=$API_URL --rm django_app:latest | |
sleep 10 | |
page=$(curl http://127.0.0.1:8080) | |
if ! grep -q "FastAPI-AWS-Django-GCP" <<< "$page"; then echo "Page GET failed." && exit 1; fi | |
- name: Save result | |
if: always() | |
uses: ./.github/actions/save-workflow-result | |
with: | |
result: ${{ job.status }} |