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- # Controls when the workflow will run
2+
53on :
6- # Triggers the workflow on push or pull request events but only for the master branch
74 push :
8-
9- # Allows you to run this workflow manually from the Actions tab
105 workflow_dispatch :
116
12- # A workflow run is made up of one or more jobs that can run sequentially or in parallel
7+ permissions :
8+ id-token : write
9+ pages : write
10+
1311jobs :
14- # This workflow contains a single job called "build"
1512 build :
16- # The type of runner that the job will run on
1713 runs-on : ubuntu-latest
18-
19- # Steps represent a sequence of tasks that will be executed as part of the job
2014 steps :
21- # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
2215 - uses : actions/checkout@v4
2316 - name : Set up JDK
2417 uses : actions/setup-java@v4
4538 - name : Upload artifact
4639 uses : actions/upload-pages-artifact@v3
4740 with :
48- # Upload build dir
41+
4942 path : ' ./build/dist/js/productionExecutable'
5043
5144 - name : Deploy to GitHub Pages
You can’t perform that action at this time.
0 commit comments