Update deployment.yml #7
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: Deploy to GitHub Pages | |
on: | |
push: | |
branches: | |
- main # Set a branch name to trigger deployment | |
pull_request: | |
jobs: | |
deploy: | |
runs-on: ubuntu-20.04 | |
permissions: | |
contents: write | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
steps: | |
- name: Checkout deployment repository | |
uses: actions/checkout@v3 | |
with: | |
repository: mikiken/mikiken.net | |
path: compiler_log/ | |
token: ${{ secrets.ACTIONS_DEPLOY_KEY }} | |
- name: Push changes | |
run: | | |
cp index.html mikiken.net/compiler_log/index.html | |
cd mikiken.net | |
git config user.name mikiken | |
git config user.email [email protected] | |
git add compiler_log/index.html | |
git commit -m "Update `compiler_log/index.html` via github-actions" | |
git push origin main |