File tree Expand file tree Collapse file tree 1 file changed +20
-27
lines changed Expand file tree Collapse file tree 1 file changed +20
-27
lines changed Original file line number Diff line number Diff line change @@ -2,40 +2,33 @@ name: Release
2
2
3
3
on :
4
4
release :
5
- types : [
6
- published,
7
- unpublished,
8
- created,
9
- edited,
10
- deleted,
11
- prereleased,
12
- released,
13
- ]
14
- workflow_dispatch :
5
+ types : [published]
15
6
16
- permissions :
17
- actions : write
18
- checks : write
19
- contents : write
20
- deployments : write
21
- id-token : write
22
- issues : write
23
- discussions : write
24
- packages : write
25
- pages : write
26
- pull-requests : write
27
- repository-projects : write
28
- security-events : write
29
- statuses : write
7
+ defaults :
8
+ run :
9
+ shell : bash
30
10
31
11
jobs :
32
- context :
12
+ release :
33
13
runs-on : ubuntu-latest
34
14
35
15
steps :
36
- - name : Log (github)
37
- shell : bash
16
+ - name : Context (github)
38
17
run : |
39
18
cat <<EOF
40
19
${{toJson(github)}}
41
20
EOF
21
+
22
+ - uses : actions/checkout@v4
23
+
24
+ - name : Build container
25
+ id : build_container
26
+ uses : ./.github/actions/build
27
+ with :
28
+ # We are not going to push the image until we are ready to enable this release
29
+ # pipeline and disable the circle CI build/push
30
+ push : true
31
+ username : ${{ github.actor}}
32
+ password : ${{ secrets.GITHUB_TOKEN }}
33
+ node_env : production
34
+
You can’t perform that action at this time.
0 commit comments