Skip to content

.github/workflows/deploy.yml #3

.github/workflows/deploy.yml

.github/workflows/deploy.yml #3

Workflow file for this run

name: Deploy to GitHub Pages
on:
workflow_run:
workflows: ["Build resume"]
types:
- completed
permissions:
contents: write
id-token: write
pages: write
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Download artifacts
uses: actions/download-artifact@v4
with:
name: github-pages
path: ./output
- name: Deploy to GitHub Pages
uses: actions/deploy-pages@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./output