We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 311ffcf commit 8dee9b1Copy full SHA for 8dee9b1
2 files changed
.github/workflows/ci.yml
@@ -1,11 +1,26 @@
1
name: OpenMRS CI
2
3
on:
4
+ workflow_dispatch: # temporary, for debugging
5
push:
6
branches: [main]
7
pull_request:
8
9
+ release:
10
+ types:
11
+ - created
12
+
13
+concurrency:
14
+ group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
15
+ cancel-in-progress: ${{ github.event_name == 'pull_request' }}
16
17
jobs:
18
build:
19
uses: openmrs/openmrs-contrib-gha-workflows/.github/workflows/build-frontend-module.yml@main
20
21
22
+ needs: build
23
+ uses: openmrs/openmrs-contrib-gha-workflows/.github/workflows/release-frontend-module.yml@main
24
+ secrets:
25
+ NPM_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }}
26
+ BOT_PAT: ${{ secrets.OMRS_BOT_GH_TOKEN }}
.github/workflows/release.yml
0 commit comments