Skip to content

Commit

Permalink
Revert deploy changes
Browse files Browse the repository at this point in the history
  • Loading branch information
johnfraney committed Apr 2, 2024
1 parent 27ac918 commit 8fb4723
Showing 1 changed file with 20 additions and 4 deletions.
24 changes: 20 additions & 4 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,19 +8,35 @@ permissions:
contents: write
jobs:
build-and-deploy:
concurrency: ci-${{ github.ref }} # Recommended if you intend to make multiple deployments in quick succession.
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/checkout@v4

- name: Blur site 🌫️
uses: blurry-dev/[email protected]
working-directory: ./docs
- name: Install poetry
run: pipx install poetry

- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: "3.11"
cache: "poetry"

- name: Install dependencies
run: |
sudo apt-get update && sudo apt-get install -y ffmpeg imagemagick
- name: Build 🔧
run: |
cd docs
poetry install --no-root
poetry run blurry build
- name: Deploy to Netlify
uses: nwtgck/[email protected]
with:
publish-dir: ${{ github.workspace }}docs/dist
publish-dir: "./docs/dist"
production-branch: main
deploy-message: "Deploy from GitHub Actions"
enable-pull-request-comment: false
Expand Down

0 comments on commit 8fb4723

Please sign in to comment.