Merge branch 'main' of https://github.com/mobilityDCAT-AP/mobilitydca… #11
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: Publish GitHub Pages | |
on: | |
push: | |
branches: | |
- 'main' | |
jobs: | |
publish: | |
permissions: | |
contents: write | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out | |
# You may use a newer version of https://github.com/actions/checkout | |
uses: actions/checkout@v4 | |
- name: Publish current workdir to GitHub Pages | |
uses: rayluo/github-pages-overwriter@v1.3 | |
with: | |
source-directory: dist | |
target-branch: gh-pages |