File tree 1 file changed +6
-13
lines changed
1 file changed +6
-13
lines changed Original file line number Diff line number Diff line change 1
- # This is a basic workflow to help you get started with Actions
2
-
3
1
name : CI
4
- # Controls when the workflow will run
2
+
5
3
on :
6
- # Triggers the workflow on push or pull request events but only for the master branch
7
4
push :
8
-
9
- # Allows you to run this workflow manually from the Actions tab
10
5
workflow_dispatch :
11
6
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
+
13
11
jobs :
14
- # This workflow contains a single job called "build"
15
12
build :
16
- # The type of runner that the job will run on
17
13
runs-on : ubuntu-latest
18
-
19
- # Steps represent a sequence of tasks that will be executed as part of the job
20
14
steps :
21
- # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
22
15
- uses : actions/checkout@v4
23
16
- name : Set up JDK
24
17
uses : actions/setup-java@v4
45
38
- name : Upload artifact
46
39
uses : actions/upload-pages-artifact@v3
47
40
with :
48
- # Upload build dir
41
+
49
42
path : ' ./build/dist/js/productionExecutable'
50
43
51
44
- name : Deploy to GitHub Pages
You can’t perform that action at this time.
0 commit comments