Skip to content

Commit b5cd6db

Browse files
authored
Test (#70)
1 parent a0b908f commit b5cd6db

File tree

1 file changed

+20
-27
lines changed

1 file changed

+20
-27
lines changed

.github/workflows/release.yml

Lines changed: 20 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -2,40 +2,33 @@ name: Release
22

33
on:
44
release:
5-
types: [
6-
published,
7-
unpublished,
8-
created,
9-
edited,
10-
deleted,
11-
prereleased,
12-
released,
13-
]
14-
workflow_dispatch:
5+
types: [published]
156

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
3010

3111
jobs:
32-
context:
12+
release:
3313
runs-on: ubuntu-latest
3414

3515
steps:
36-
- name: Log (github)
37-
shell: bash
16+
- name: Context (github)
3817
run: |
3918
cat <<EOF
4019
${{toJson(github)}}
4120
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+

0 commit comments

Comments
 (0)