-
Notifications
You must be signed in to change notification settings - Fork 4
36 lines (33 loc) · 1.17 KB
/
release-candidate.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
name: Release Candidate (from Release branch)
on:
workflow_dispatch:
push:
branches:
- release
paths-ignore:
- .github/workflows/**
- .gitignore
- build.sh
- build-aarch64.sh
- build-jvm.sh
- LICENSE
- mvnw
- mvnw.cmd
- README.md
- release.sh
jobs:
call-release-candidate:
# environment: development
uses: andreabattaglia/reusable-workflows/.github/workflows/release-candidate.yml@main
# To pass named inputs to a called workflow, use the "with" keyword in a job.
# with:
# JVM: false # Optional - Default true - Enable this input variable if you need your Quarkus app to be compiled in JVM_MODE
# Use the "secrets" keyword to pass named secrets.
secrets:
ARTIFACTORY_USERNAME: ${{ secrets.ARTIFACTORY_USERNAME }}
ARTIFACTORY_TOKEN: ${{ secrets.ARTIFACTORY_TOKEN }}
QUAY_USERNAME: ${{ secrets.QUAY_MANUFACTURING_USERNAME }}
QUAY_PASSWORD: ${{ secrets.QUAY_MANUFACTURING_PASSWORD }}
# Workflows that call reusable workflows in the same organization or enterprise
# can use the "inherit" keyword to implicitly pass the secrets.
# secrets: inherit