Fix #39 Temporal change to clever cloud #35
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: Collect static and deploy to Pages | |
on: | |
push: | |
branches: ["prod"] | |
pull_request: | |
branches: ["prod"] | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages | |
permissions: | |
contents: read | |
pages: write | |
id-token: write | |
# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued. | |
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete. | |
concurrency: | |
group: "pages" | |
cancel-in-progress: false | |
jobs: | |
collectstatic: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
with: | |
ref: 'prod' | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: 3.12 | |
- name: Setup Poetry | |
uses: Gr1N/setup-poetry@v9 | |
with: | |
poetry-preview: false | |
poetry-version: 1.8.3 | |
- name: Install dependencies | |
run: poetry install | |
- name: Collect static | |
env: | |
SECRET_KEY: ${{ secrets.SECRET_KEY }} | |
AWS_ACCOUNT_ID: ${{ secrets.AWS_ACCOUNT_ID }} | |
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} | |
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | |
AWS_STORAGE_BUCKET_NAME: ${{ secrets.AWS_STORAGE_BUCKET_NAME }} | |
AWS_DB_NAME: ${{ secrets.AWS_DB_NAME }} | |
AWS_DB_USER: ${{ secrets.AWS_DB_USER }} | |
AWS_DB_PASSWORD: ${{ secrets.AWS_DB_PASSWORD }} | |
AWS_DB_HOST: ${{ secrets.AWS_DB_HOST }} | |
AWS_DB_PORT: ${{ secrets.AWS_DB_PORT }} | |
POSTGRESQL_ADDON_HOST: ${{ secrets.POSTGRESQL_ADDON_HOST}} | |
POSTGRESQL_ADDON_DB: ${{ secrets.POSTGRESQL_ADDON_DB}} | |
POSTGRESQL_ADDON_USER: ${{ secrets.POSTGRESQL_ADDON_USER}} | |
POSTGRESQL_ADDON_PORT: ${{ secrets.POSTGRESQL_ADDON_PORT}} | |
POSTGRESQL_ADDON_PASSWORD: ${{ secrets.POSTGRESQL_ADDON_PASSWORD}} | |
POSTGRESQL_ADDON_URI: ${{ secrets.POSTGRESQL_ADDON_URI}} | |
run: poetry run python manage.py collectstatic --noinput --clear | |
- name: Archive static files | |
uses: actions/upload-artifact@v4 | |
with: | |
name: assets | |
path: assets/ | |
deploy: | |
environment: | |
name: github-pages | |
url: ${{ steps.deployment.outputs.page_url }} | |
runs-on: ubuntu-latest | |
needs: collectstatic | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
ref: 'prod' | |
- name: Download static files | |
uses: actions/download-artifact@v4 | |
with: | |
name: assets | |
path: ./assets | |
- name: Setup Pages | |
uses: actions/configure-pages@v5 | |
- name: Upload artifact | |
uses: actions/upload-pages-artifact@v3 | |
with: | |
path: './assets' | |
- name: Deploy to GitHub Pages | |
id: production | |
uses: actions/deploy-pages@v4 |