diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 5068302d9..2e006c2b0 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -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/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