forked from wildfly/wildfly-operator
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
9 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,10 +7,7 @@ env: | |
REGISTRY_PASSWORD: ${{ secrets.REGISTRY_ROBOT_PASSWORD }} | ||
|
||
# Controls when the action will run. | ||
on: | ||
release: | ||
types: | ||
- published | ||
on: workflow_dispatch | ||
|
||
# A workflow run is made up of one or more jobs that can run sequentially or in parallel | ||
jobs: | ||
|
@@ -21,12 +18,16 @@ jobs: | |
|
||
# Steps represent a sequence of tasks that will be executed as part of the job | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: actions/checkout@v3 | ||
- name: Set up Go | ||
uses: actions/setup-go@v3 | ||
with: | ||
go-version: 1.21.3 | ||
- name: Docker Login to Quay.io (main only) | ||
uses: docker/[email protected] | ||
with: | ||
registry: ${{ env.REGISTRY }} | ||
username: ${{ env.REGISTRY_USER }} | ||
password: ${{ env.REGISTRY_PASSWORD }} | ||
username: ${{ env.QUAY_USERNAME }} | ||
password: ${{ env.QUAY_PASSWORD }} | ||
- name: Build and Push Image Tag | ||
run: IMG="quay.io/wildfly/wildfly-operator:${GITHUB_REF##*/}" make manifests docker-build docker-push | ||
run: IMG="quay.io/yborgess/wildfly-operator:${GITHUB_REF##*/}" make manifests docker-build docker-push |