Skip to content

Commit

Permalink
Update publish.yml
Browse files Browse the repository at this point in the history
use github pages from CI
  • Loading branch information
alifeee authored Dec 15, 2023
1 parent 1f46120 commit 64324e0
Showing 1 changed file with 46 additions and 43 deletions.
89 changes: 46 additions & 43 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -1,19 +1,35 @@
# this workflow builds the cv,
# uploads it to the GitHub release that triggered the job
# and uploads built files to the publish branch, where they are served by GitHub pages
# and uploads built files to GitHub pages
name: build cv and publish to GitHub release and github pages site

on:
push:
tags:
- "*"

# 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
steps:
- uses: actions/checkout@v3
- uses: oven-sh/setup-bun@v1
- name: Checkout
uses: actions/checkout@v4
- name: Setup Pages
uses: actions/configure-pages@v4
- name: Setup Bun
uses: oven-sh/setup-bun@v1

- name: Install dependencies
run: bun install
Expand All @@ -23,7 +39,19 @@ jobs:
run: bun run build-html
- name: Build pdf
run: bun run build-pdf
- name: Rename files
run: |
mv build/cv.html build/index.html
mv build/cv.pdf build/Alfie-Renn-CV.pdf
- name: Copy build files
run: cp -r build/* _site/
- name: Copy static files
run: cp -r public/* _site/

- name: Upload GitHub Pages artifact
uses: actions/upload-pages-artifact@v2

- name: Save build folder as artifact
uses: actions/upload-artifact@v3
with:
Expand All @@ -32,8 +60,19 @@ jobs:
- name: Save pdf as artifact
uses: actions/upload-artifact@v2
with:
name: cv.pdf
path: build/cv.pdf
name: Alfie-Renn-CV.pdf
path: build/Alfie-Renn-CV.pdf

deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
needs: build
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v3

publish-to-release:
needs: build
Expand Down Expand Up @@ -62,43 +101,7 @@ jobs:
uses: svenstaro/upload-release-action@v2
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: build/cv.pdf
asset_name: cv.pdf
file: build/Alfie-Renn-CV.pdf
asset_name: Alfie-Renn-CV.pdf
tag: ${{ github.ref }}
overwrite: true

publish-to-gh-pages-branch:
needs: build
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Checkout main branch
uses: actions/checkout@v3
with:
ref: main

- name: Download artifact
uses: actions/download-artifact@v3
with:
name: build
path: build

- name: Remove old files from /docs
run: rm -rf docs/*

- name: Copy build files to /docs
run: cp -r build/* docs/

- name: Copy static files to /docs
run: cp -r public/* docs/

- name: Rename cv.html to index.html
run: mv docs/cv.html docs/index.html
- name: Rename cv.pdf to Alfie-Renn-CV.pdf
run: mv docs/cv.pdf docs/Alfie-Renn-CV.pdf

- name: Git auto commit
uses: stefanzweifel/git-auto-commit-action@v4
with:
commit_message: "Update cv to ${{ github.ref_name }}"

0 comments on commit 64324e0

Please sign in to comment.