Skip to content

Commit

Permalink
Fix #11 Try to run collectstatic with deploy
Browse files Browse the repository at this point in the history
  • Loading branch information
stariluz committed Jul 23, 2024
1 parent 389f55e commit ee99e0f
Show file tree
Hide file tree
Showing 2 changed files with 85 additions and 83 deletions.
121 changes: 85 additions & 36 deletions .github/workflows/poetry-django.yml
Original file line number Diff line number Diff line change
@@ -1,47 +1,96 @@
name: Django CI
name: Collect static and deploy to Pages

on:
push:
branches: [ "prod" ]
branches: ["prod"]
pull_request:
branches: [ "prod" ]
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:
build:

runs-on: ubuntu-latest
strategy:
max-parallel: 4
matrix:
python-version: [3.12]

steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Setup Poetry
# You may pin to the exact commit or the version.
# uses: Gr1N/setup-poetry@48b0f77c8c1b1b19cb962f0f00dff7b4be8f81ec
uses: Gr1N/setup-poetry@v9
- name: Checkout code
uses: actions/checkout@v4
with:
ref: 'prod'

- name: Set up Python
uses: actions/setup-python@v3
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 }}
run: poetry run python manage.py collectstatic --noinput

- name: Archive static files
uses: actions/upload-artifact@v3
with:
# Allow to install prerelease versions of Poetry
poetry-preview: false # optional, default is false
# Poetry version to use, if version is not provided then latest stable version will be used
poetry-version: 1.8.3 # optional
- 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 }}
run: poetry run python manage.py collectstatic --noinput
name: assets
path: assets/

deploy:

environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
needs: collect-static
steps:
- name: Checkout
uses: actions/checkout@v4
with:
ref: 'prod'

- name: Download static files
uses: actions/download-artifact@v3
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
47 changes: 0 additions & 47 deletions .github/workflows/static.yml

This file was deleted.

0 comments on commit ee99e0f

Please sign in to comment.