docs: use the correct documentation documentation (#115) #149
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: 'Push to main 🚀' | |
on: | |
push: | |
branches: | |
- main | |
workflow_dispatch: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
upload: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: ./.github/actions/build | |
- uses: actions/upload-pages-artifact@v1 | |
with: | |
path: src/.vuepress/dist | |
# deploy-s3: | |
# needs: upload | |
# runs-on: ubuntu-22.04 | |
# steps: | |
# - uses: actions/download-artifact@v3 | |
# with: | |
# name: github-pages | |
# | |
# - name: 'Untar artifact' | |
# shell: bash | |
# run: | | |
# mkdir artifact | |
# tar -xf artifact.tar -C artifact | |
# | |
# - uses: myparcelnl/actions/aws-setup@v3 | |
# with: | |
# region: ${{ secrets.AWS_DEFAULT_REGION }} | |
# access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }} | |
# secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | |
# | |
# - uses: myparcelnl/actions/aws-s3-sync@v3 | |
# with: | |
# source: artifact | |
# bucket: ${{ secrets.S3_BUCKET }} | |
# distribution-id: ${{ secrets.CLOUDFRONT_DISTRIBUTION_ID }} | |
# delete: true | |
deploy-ghp: | |
needs: upload | |
runs-on: ubuntu-22.04 | |
permissions: | |
pages: write | |
id-token: write | |
environment: | |
name: github-pages | |
url: ${{ steps.deployment.outputs.page_url }} | |
steps: | |
- id: deployment | |
uses: actions/deploy-pages@v1 | |
rebase-prs: | |
name: 'Rebase open pull requests' | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: myparcelnl/actions/setup-app-credentials@v3 | |
id: credentials | |
with: | |
app-id: ${{ secrets.MYPARCEL_APP_ID }} | |
private-key: ${{ secrets.MYPARCEL_APP_PRIVATE_KEY }} | |
- uses: peter-evans/rebase@v2 | |
with: | |
token: ${{ steps.credentials.outputs.token }} |