Fix container port issue (#23) #14
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: Update gh-pages files | |
on: | |
# Runs on pushes targeting the default branch | |
push: | |
branches: | |
- 'main' | |
# 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: write | |
pages: write | |
id-token: write | |
jobs: | |
sync-branch: | |
name: Update gh-pages branch | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Merge branch | |
uses: devmasx/merge-branch@master | |
with: | |
type: now | |
message: Update gh-pages branch | |
target_branch: gh-pages | |
github_token: ${{ secrets.GITHUB_TOKEN }} |