Make sure to get the relevant sha for build #113
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: Github Pages | |
on: | |
push: | |
# Runs when a release is published | |
release: | |
types: [released] | |
# 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 one concurrent deployment | |
concurrency: | |
group: "pages" | |
cancel-in-progress: true | |
jobs: | |
# Build & Deploy Job | |
gh_pages: | |
name: Build & Deploy Github Pages | |
runs-on: ubuntu-latest | |
environment: | |
name: github-pages | |
url: ${{ steps.gh_pages.outputs.page_url }} | |
env: | |
GHP_SOURCE_DIR: pages | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Prep For Pages | |
run: | | |
# Copy md files into Pages directory | |
cp {README.md,Privacy.md,LICENSE.md} $GHP_SOURCE_DIR | |
# Copy the icon into an images sub-directory | |
mkdir $GHP_SOURCE_DIR/images | |
cp src/drive_backup/resources/drive-backup-icon.png $GHP_SOURCE_DIR/images | |
# Update the icon links in the README | |
sed -i 's#src/drive_backup/resources/drive-backup-icon.png#images/drive-backup-icon.png#g' $GHP_SOURCE_DIR/README.md | |
# Update License links | |
sed -i 's#LICENSE.md#LICENSE#g' $GHP_SOURCE_DIR/README.md | |
- name: Build & Deploy | |
id: gh_pages | |
uses: dunkmann00/jekyll-v4-gh-pages@v1 | |
with: | |
source: ${{ env.GHP_SOURCE_DIR }} |