Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
yersan committed Feb 27, 2024
1 parent 71bc37a commit b2e248e
Showing 1 changed file with 10 additions and 9 deletions.
19 changes: 10 additions & 9 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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/login-action@v1.8.0
uses: docker/login-action@v3.0.0
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

0 comments on commit b2e248e

Please sign in to comment.