Skip to content

Commit

Permalink
fix: change branch name
Browse files Browse the repository at this point in the history
  • Loading branch information
alicechaitea committed Jan 17, 2024
1 parent ac70874 commit 53f4e6f
Show file tree
Hide file tree
Showing 14 changed files with 28 additions and 28 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ jobs:
earthly_runner_address: ${{ secrets.earthly_runner_address }}
earthly_runner_secret: ${{ secrets.earthly_runner_secret }}
deploy:
uses: input-output-hk/catalyst-ci/.github/workflows/deploy.yml@@feat/udcmigration
uses: input-output-hk/catalyst-ci/.github/workflows/deploy.yml@@feat/udc-migration
if: github.ref == format('refs/heads/{0}', github.event.repository.default_branch) && inputs.deployment_images != ''
needs: [publish]
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
repository: ${{ inputs.deployment_repo }}
token: ${{ secrets.token }}
- name: Merge hashes
uses: input-output-hk/catalyst-ci/actions/merge@@feat/udcmigration
uses: input-output-hk/catalyst-ci/actions/merge@@feat/udc-migration
with:
hash_file: "src/kube/environments/${{ inputs.environment }}/hashes.json"
images: ${{ inputs.images }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,15 +74,15 @@ jobs:
echo "DEST_DIR=$DEST_DIR" >> $GITHUB_ENV
echo "CLEAN_EXCLUDE=$CLEAN_EXCLUDE" >> $GITHUB_ENV
- name: Setup CI
uses: input-output-hk/catalyst-ci/actions/setup@@feat/udcmigration
uses: input-output-hk/catalyst-ci/actions/setup@@feat/udc-migration
with:
aws_role_arn: ${{ inputs.aws_role_arn }}
aws_region: ${{ inputs.aws_region }}
cli_version: ${{ inputs.ci_cli_version }}
earthly_version: ${{ inputs.earthly_version }}
earthly_runner_secret: ${{ secrets.earthly_runner_secret }}
- name: Build docs
uses: input-output-hk/catalyst-ci/actions/run@@feat/udcmigration
uses: input-output-hk/catalyst-ci/actions/run@@feat/udc-migration
id: build
with:
earthfile: ${{ inputs.earthfile }}
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,13 +88,13 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: Setup CI
uses: input-output-hk/catalyst-ci/actions/setup@@feat/udcmigration
uses: input-output-hk/catalyst-ci/actions/setup@@feat/udc-migration
with:
cli_version: ${{ inputs.ci_cli_version }}
configure_registries: "false"
earthly_skip_install: "true"
- name: Discover Earthly files
uses: input-output-hk/catalyst-ci/actions/discover@@feat/udcmigration
uses: input-output-hk/catalyst-ci/actions/discover@@feat/udc-migration
id: discover
with:
targets: ${{ inputs.target }}
Expand Down Expand Up @@ -131,7 +131,7 @@ jobs:
echo "targets=$targets_with_space" >> $GITHUB_OUTPUT
- uses: actions/checkout@v3
- name: Setup CI
uses: input-output-hk/catalyst-ci/actions/setup@@feat/udcmigration
uses: input-output-hk/catalyst-ci/actions/setup@@feat/udc-migration
with:
aws_ecr_registry: ${{ inputs.aws_ecr_registry }}
aws_role_arn: ${{ inputs.aws_role_arn }}
Expand All @@ -142,15 +142,15 @@ jobs:
earthly_version: ${{ inputs.earthly_version }}
earthly_runner_secret: ${{ secrets.earthly_runner_secret }}
- name: Build image
uses: input-output-hk/catalyst-ci/actions/run@@feat/udcmigration
uses: input-output-hk/catalyst-ci/actions/run@@feat/udc-migration
id: build
with:
earthfile: ${{ matrix.earthfile }}
targets: ${{ steps.get_target.outputs.targets }}
platform: ${{ matrix.platform }}
runner_address: ${{ secrets.earthly_runner_address }}
- name: Push image
uses: input-output-hk/catalyst-ci/actions/push@@feat/udcmigration
uses: input-output-hk/catalyst-ci/actions/push@@feat/udc-migration
if: github.ref == format('refs/heads/{0}', inputs.default_branch) && !inputs.skip_publish_on_default
with:
image: ${{ steps.build.outputs.image }}
Expand All @@ -164,7 +164,7 @@ jobs:
if: startsWith(github.ref, 'refs/tags/')
run: echo "tag=${GITHUB_REF#refs/*/}" >> $GITHUB_OUTPUT
- name: Push release image
uses: input-output-hk/catalyst-ci/actions/push@@feat/udcmigration
uses: input-output-hk/catalyst-ci/actions/push@@feat/udc-migration
if: startsWith(github.ref, 'refs/tags/')
with:
image: ${{ steps.build.outputs.image }}
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,13 +72,13 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: Setup CI
uses: input-output-hk/catalyst-ci/actions/setup@@feat/udcmigration
uses: input-output-hk/catalyst-ci/actions/setup@@feat/udc-migration
with:
cli_version: ${{ inputs.ci_cli_version }}
configure_registries: "false"
earthly_skip_install: "true"
- name: Discover Earthly files
uses: input-output-hk/catalyst-ci/actions/discover@@feat/udcmigration
uses: input-output-hk/catalyst-ci/actions/discover@@feat/udc-migration
id: discover
with:
targets: ${{ inputs.target }}
Expand Down Expand Up @@ -115,7 +115,7 @@ jobs:
echo "targets=$targets_with_space" >> $GITHUB_OUTPUT
- uses: actions/checkout@v3
- name: Setup CI
uses: input-output-hk/catalyst-ci/actions/setup@@feat/udcmigration
uses: input-output-hk/catalyst-ci/actions/setup@@feat/udc-migration
with:
aws_role_arn: ${{ inputs.aws_role_arn }}
aws_region: ${{ inputs.aws_region }}
Expand All @@ -125,7 +125,7 @@ jobs:
earthly_version: ${{ inputs.earthly_version }}
earthly_runner_secret: ${{ secrets.earthly_runner_secret }}
- name: Build artifact
uses: input-output-hk/catalyst-ci/actions/run@@feat/udcmigration
uses: input-output-hk/catalyst-ci/actions/run@@feat/udc-migration
id: build
with:
earthfile: ${{ matrix.earthfile }}
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/run.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,13 +66,13 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: Setup CI
uses: input-output-hk/catalyst-ci/actions/setup@@feat/udcmigration
uses: input-output-hk/catalyst-ci/actions/setup@@feat/udc-migration
with:
cli_version: ${{ inputs.ci_cli_version }}
configure_registries: "false"
earthly_skip_install: "true"
- name: Discover Earthly files
uses: input-output-hk/catalyst-ci/actions/discover@@feat/udcmigration
uses: input-output-hk/catalyst-ci/actions/discover@@feat/udc-migration
id: discover
with:
targets: ${{ inputs.target }}
Expand Down Expand Up @@ -107,7 +107,7 @@ jobs:
echo "targets=$targets_with_space" >> $GITHUB_OUTPUT
- uses: actions/checkout@v3
- name: Setup CI
uses: input-output-hk/catalyst-ci/actions/setup@@feat/udcmigration
uses: input-output-hk/catalyst-ci/actions/setup@@feat/udc-migration
with:
aws_role_arn: ${{ inputs.aws_role_arn }}
aws_region: ${{ inputs.aws_region }}
Expand All @@ -117,7 +117,7 @@ jobs:
earthly_version: ${{ inputs.earthly_version }}
earthly_runner_secret: ${{ secrets.earthly_runner_secret }}
- name: Run
uses: input-output-hk/catalyst-ci/actions/run@@feat/udcmigration
uses: input-output-hk/catalyst-ci/actions/run@@feat/udc-migration
id: build
with:
privileged: ${{ inputs.privileged }}
Expand Down
2 changes: 1 addition & 1 deletion actions/configure-runner/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Earthly to consume them correctly.

```yaml
- name: Setup Remote Runner
uses: input-output-hk/catalyst-ci/actions/configure-runner@@feat/udcmigration
uses: input-output-hk/catalyst-ci/actions/configure-runner@@feat/udc-migration
with:
path: /path/to/store/certs # Optional, defaults to /tmp/certs
secret: ${{ secrets.EARTHLY_RUNNER_SECRET }} # The full name of the secret in AWS SM
Expand Down
4 changes: 2 additions & 2 deletions actions/discover/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@ discover:
json: ${{ steps.discover.outputs.json }
steps:
- name: Install CLI
uses: input-output-hk/catalyst-ci/actions/install@@feat/udcmigration
uses: input-output-hk/catalyst-ci/actions/install@@feat/udc-migration
# We discover all Earthfiles that contain a target named "target"
- name: Discover Earthly files
uses: input-output-hk/catalyst-ci/actions/discover@@feat/udcmigration
uses: input-output-hk/catalyst-ci/actions/discover@@feat/udc-migration
id: discover
with:
targets: target # You can list more than one target here
Expand Down
2 changes: 1 addition & 1 deletion actions/install/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ The CLI is required by a select few actions in order to perform certain operatio

```yaml
- name: Install CLI
uses: input-output-hk/catalyst-ci/actions/install@@feat/udcmigration
uses: input-output-hk/catalyst-ci/actions/install@@feat/udc-migration
with:
version: latest # Or select a specific version
- name: Run CLI
Expand Down
2 changes: 1 addition & 1 deletion actions/merge/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ It's intended to automate a GitOps repository where images are deployed from a c

```yaml
- name: Merge hashes
uses: input-output-hk/catalyst-ci/actions/merge@@feat/udcmigration
uses: input-output-hk/catalyst-ci/actions/merge@@feat/udc-migration
with:
hash_file: "/path/to/existing/hashes.json"
images: |
Expand Down
2 changes: 1 addition & 1 deletion actions/push/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ To see a full demonstration of this action, see the [publish workflow](../../.gi

```yaml
- name: Push image
uses: input-output-hk/catalyst-ci/actions/push@@feat/udcmigration
uses: input-output-hk/catalyst-ci/actions/push@@feat/udc-migration
with:
image: my_image:latest
registries: |
Expand Down
2 changes: 1 addition & 1 deletion actions/run/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ To see a full demonstration of this action, see the [release workflow](../../.gi

```yaml
- name: Build
uses: input-output-hk/catalyst-ci/actions/run@@feat/udcmigration
uses: input-output-hk/catalyst-ci/actions/run@@feat/udc-migration
with:
earthfile: ./project
target: build
Expand Down
2 changes: 1 addition & 1 deletion actions/setup/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ To see a full demonstration of this action, see the [release workflow](../../.gi

```yaml
- name: Setup CI
uses: input-output-hk/catalyst-ci/actions/setup@@feat/udcmigration
uses: input-output-hk/catalyst-ci/actions/setup@@feat/udc-migration
with:
aws_ecr_registry: 1234567890.dkr.ecr.us-east-1.amazonaws.com
aws_role_arn: arn:aws:iam::1234567890:role/github
Expand Down
4 changes: 2 additions & 2 deletions actions/setup/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ runs:
with:
version: ${{ inputs.earthly_version }}
- name: Install CI CLI
uses: input-output-hk/catalyst-ci/actions/install@@feat/udcmigration
uses: input-output-hk/catalyst-ci/actions/install@@feat/udc-migration
if: ${{ inputs.cli_skip_install != 'true' }}
with:
version: ${{ inputs.cli_version }}
Expand Down Expand Up @@ -95,7 +95,7 @@ runs:
username: ${{ github.actor }}
password: ${{ inputs.github_token }}
- name: Setup Remote Runner
uses: input-output-hk/catalyst-ci/actions/configure-runner@@feat/udcmigration
uses: input-output-hk/catalyst-ci/actions/configure-runner@@feat/udc-migration
if: ${{ inputs.earthly_runner_secret != '' && inputs.earthly_skip_install != 'true' }}
with:
secret: ${{ inputs.earthly_runner_secret }}

0 comments on commit 53f4e6f

Please sign in to comment.