We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7b35f38 commit 74edbadCopy full SHA for 74edbad
1 file changed
.github/workflows/pre-release.yml
@@ -5,21 +5,12 @@ on:
5
paths:
6
- '.github/project.yml'
7
8
-jobs:
9
- release:
10
- runs-on: ubuntu-latest
11
- name: pre release
12
-
13
- steps:
14
- - uses: radcortez/project-metadata-action@master
15
- name: retrieve project metadata
16
- id: metadata
17
- with:
18
- github-token: ${{secrets.GITHUB_TOKEN}}
19
- metadata-file-path: '.github/project.yml'
+concurrency:
+ group: ${{ github.workflow }}-${{ github.ref }}
+ cancel-in-progress: true
20
21
- - name: Validate version
22
- if: contains(steps.metadata.outputs.current-version, 'SNAPSHOT')
23
- run: |
24
- echo '::error::Cannot release a SNAPSHOT version.'
25
- exit 1
+jobs:
+ pre-release:
+ name: Pre-Release
+ uses: quarkiverse/.github/.github/workflows/pre-release.yml@main
+ secrets: inherit
0 commit comments