Skip to content

add 505 file 3

add 505 file 3 #20

Workflow file for this run

name: Release from main to GitHub Pages
on:
push:
branches:
- main
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Deploy 🚀
uses: JamesIves/github-pages-deploy-action@v4
with:
folder: dist
branch: gh-pages
token: ${{ secrets.GITHUB_TOKEN }}
- name: make 505 file
run: |
touch 505.html
git add 505.html
git commit -m "add 505 html"
shell: bash