Skip to content

Commit

Permalink
Merge pull request #155 from stakater/fix-action-refs
Browse files Browse the repository at this point in the history
Fix references
  • Loading branch information
Juansasa authored Feb 12, 2025
2 parents e372111 + 8e66b27 commit 475b0a6
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/operator_pull_request.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -54,22 +54,22 @@ jobs:

- name: Verify code
id: verify
uses: ./.github/actions/operator/verify
uses: stakater/.github/.github/actions/operator/verify@main
with:
ENABLE_LINTING: ${{ inputs.ENABLE_LINTING }}
ENABLE_UNIT_TESTS: ${{ inputs.ENABLE_UNIT_TESTS }}

- name: Setup Version Tag
id: tag
uses: ./.github/actions/operator/tag
uses: stakater/.github/.github/actions/operator/tag@main
with:
RELEASE_BRANCH: ${{ inputs.RELEASE_BRANCH }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: Setup Docker
id: docker
uses: ./.github/actions/operator/docker
uses: stakater/.github/.github/actions/operator/docker@main
with:
TAG: ${{ steps.tag.outputs.PR_TAG }}
env:
Expand All @@ -78,7 +78,7 @@ jobs:
CONTAINER_REGISTRY_PASSWORD: ${{ secrets.CONTAINER_REGISTRY_PASSWORD }}

- name: Build & Push
uses: ./.github/actions/operator/build
uses: stakater/.github/.github/actions/operator/build@main
with:
TAG: ${{ steps.tag.outputs.PR_TAG }}
IMAGE_REPOSITORY: ${{ steps.docker.outputs.IMAGE_REPOSITORY }}
Expand All @@ -87,7 +87,7 @@ jobs:
ADMIN_TOKEN: ${{ secrets.ADMIN_TOKEN }}

- name: Notify
uses: ./.github/actions/operator/notify
uses: stakater/.github/.github/actions/operator/notify@main
with:
TAG: ${{ steps.tag.outputs.PR_TAG }}
IMAGE_REPOSITORY: ${{ steps.docker.outputs.IMAGE_REPOSITORY }}
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/operator_push.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -54,23 +54,23 @@ jobs:

- name: Verify code
id: verify
uses: ./.github/actions/operator/verify
uses: stakater/.github/.github/actions/verify@main
with:
GO_VERSION: ${{ inputs.GO_VERSION }}
ENABLE_LINTING: ${{ inputs.ENABLE_LINTING }}
ENABLE_UNIT_TESTS: ${{ inputs.ENABLE_UNIT_TESTS }}

- name: Setup Version Tag
id: tag
uses: ./.github/actions/operator/tag
uses: stakater/.github/.github/actions/tag@main
with:
RELEASE_BRANCH: ${{ inputs.RELEASE_BRANCH }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: Setup Docker
id: docker
uses: ./.github/actions/operator/docker
uses: stakater/.github/.github/actions/docker@main
with:
TAG: ${{ steps.tag.outputs.TAG }}
env:
Expand All @@ -79,7 +79,7 @@ jobs:
CONTAINER_REGISTRY_PASSWORD: ${{ secrets.CONTAINER_REGISTRY_PASSWORD }}

- name: Build & Push
uses: ./.github/actions/operator/build
uses: stakater/.github/.github/actions/build@main
with:
TAG: ${{ steps.tag.outputs.TAG }}
IMAGE_REPOSITORY: ${{ steps.docker.outputs.IMAGE_REPOSITORY }}
Expand All @@ -88,7 +88,7 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: Notify
uses: ./.github/actions/operator/notify
uses: stakater/.github/.github/actions/notify@main
with:
TAG: ${{ steps.tag.outputs.TAG }}
IMAGE_REPOSITORY: ${{ steps.docker.outputs.IMAGE_REPOSITORY }}
Expand Down

0 comments on commit 475b0a6

Please sign in to comment.