Skip to content

Commit fcdb3f2

Browse files
committed
wip: simplifies deploy workflow
1 parent 247b466 commit fcdb3f2

File tree

1 file changed

+5
-23
lines changed

1 file changed

+5
-23
lines changed

.github/workflows/deploy.yml

+5-23
Original file line numberDiff line numberDiff line change
@@ -86,39 +86,21 @@ jobs:
8686
JSON=$(updater scan -t "GITHUB_SHA=${{ github.sha }}" .)
8787
echo "${JSON}"
8888
echo "json=${JSON}" >> $GITHUB_OUTPUT
89-
deployment:
90-
runs-on: ubuntu-latest
91-
needs: discover
92-
steps:
9389
- name: Checkout deployment repository
9490
uses: actions/checkout@v4
9591
with:
9692
repository: ${{ inputs.deployment_repo }}
9793
token: ${{ secrets.token }}
98-
- name: Setup CI
99-
uses: input-output-hk/catalyst-ci/actions/setup@master
100-
with:
101-
aws_role_arn: ${{ inputs.aws_role_arn }}
102-
aws_region: ${{ inputs.aws_region }}
103-
cli_skip_install: "true"
104-
configure_registries: "false"
105-
dockerhub_token: ${{ secrets.dockerhub_token }}
106-
dockerhub_username: ${{ secrets.dockerhub_username }}
107-
earthly_version: ${{ inputs.earthly_version }}
108-
earthly_runner_secret: ${{ secrets.earthly_runner_secret }}
109-
runner_address: ${{ secrets.earthly_runner_address }}
110-
updater_skip_install: "false"
111-
updater_version: local
11294
- name: Apply updates
11395
run: |
11496
updater update deployments \
11597
-e "${{ inputs.environment }}" \
116-
-i "${{ needs.discover.outputs.json }}" \
98+
-i "${{ steps.discover.outputs.json }}" \
11799
"${{inputs.deployment_root_path}}"
118100
- name: Run diff
119101
run: git --no-pager diff
120102
# - name: Commit and push
121-
# uses: EndBug/add-and-commit@v9
122-
# with:
123-
# author_name: catalyst-cibot
124-
# author_email:
103+
# uses: EndBug/add-and-commit@v9
104+
# with:
105+
# author_name: catalyst-cibot
106+
# author_email:

0 commit comments

Comments
 (0)