Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci: switch to "deploy-page" action and stop relying on additional branches #488

Merged
merged 1 commit into from
Jun 21, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
54 changes: 22 additions & 32 deletions .github/workflows/build-and-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,18 @@ on:
schedule:
- cron: '42 16 1/7 * *'

# 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

env:
MDBOOK_LINKCHECK_VER: 0.7.6

Expand Down Expand Up @@ -62,43 +74,21 @@ jobs:
run: |
mdbook build

- name: Store final build
uses: actions/upload-artifact@v2
- name: Upload artifact
uses: actions/upload-pages-artifact@v1
with:
name: Build output
path: pandocs/docs/pandocs/
if-no-files-found: error

deploy:
name: Deploy to GitHub pages
# Do not run this unless *pushing* to `master`.
if: github.event_name == 'push' && github.ref == 'refs/heads/master'
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
needs: build
# Do not run this unless *pushing* to `master`
if: github.event_name == 'push' && github.ref == 'refs/heads/master'
steps:
- name: Checkout pandocs/gh-pages
uses: actions/checkout@v2
with:
path: pandocs
ref: gh-pages

- name: Delete all current files
run: |
rm -vrf pandocs/*

- name: Unpack build
uses: actions/download-artifact@v2
with:
name: Build output
path: pandocs/

- name: Deploy
working-directory: pandocs/
run: |
git config --local user.name "GitHub Action"
git config --global user.email "[email protected]"
git remote -v
git branch -v
git add -A
git commit -am 'Update build'
git push -v
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v2