File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1- # This is a basic workflow to help you get started with Actions
2-
31name : CI
4-
5- # Controls when the action will run.
62on :
7- # Triggers the workflow on push or pull request events but only for the master branch
83 push:
94 branches: [ master ]
105 pull_request:
138 # Allows you to run this workflow manually from the Actions tab
149 workflow_dispatch:
1510
16- # A workflow run is made up of one or more jobs that can run sequentially or in parallel
1711jobs :
18- # This workflow contains a single job called "build"
1912 build:
20- # The type of runner that the job will run on
2113 runs-on: ubuntu-latest
2214
23- # Steps represent a sequence of tasks that will be executed as part of the job
2415 steps:
25- # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
26- - uses : actions/checkout@v4
16+ - uses: actions/checkout@v5
17+ - uses: actions/setup-python@v6
18+ with:
19+ python-version: '3.14'
2720
28- # Runs a set of commands using the runners shell
2921 - name: Update index.html and push to repo
3022 run: |
3123 git config --local user.email "$(git log --format='%ae' HEAD^!)"
You can’t perform that action at this time.
0 commit comments