From 118366ea02e5048d3293f1e43f75198515c8024a Mon Sep 17 00:00:00 2001 From: ROY Date: Fri, 24 Apr 2026 09:14:28 +0200 Subject: [PATCH 1/4] fix: remove comments --- .github/workflows/manual_release.yml | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/.github/workflows/manual_release.yml b/.github/workflows/manual_release.yml index 8165d39..46f3b21 100644 --- a/.github/workflows/manual_release.yml +++ b/.github/workflows/manual_release.yml @@ -11,9 +11,9 @@ on: description: 'Tag to build and release' required: true -env: - IMAGE_NAME: ${{ secrets.EWX_WORKER_NODE_SERVER }} - AWS_REGION: us-east-1 +# env: +# IMAGE_NAME: ${{ secrets.EWX_WORKER_NODE_SERVER }} +# AWS_REGION: us-east-1 jobs: build-and-push: @@ -24,16 +24,16 @@ jobs: uses: actions/checkout@v4 with: ref: ${{ github.event.inputs.branch }} - - name: Configure AWS credentials - uses: aws-actions/configure-aws-credentials@v4 - with: - aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }} - aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }} - aws-region: us-east-1 - mask-aws-account-id: true - - name: Log in to ECR - id: login-ecr - uses: aws-actions/amazon-ecr-login@v2 + # - name: Configure AWS credentials + # uses: aws-actions/configure-aws-credentials@v4 + # with: + # aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }} + # aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }} + # aws-region: us-east-1 + # mask-aws-account-id: true + # - name: Log in to ECR + # id: login-ecr + # uses: aws-actions/amazon-ecr-login@v2 - name: Log in to GitHub Container Registry uses: docker/login-action@v2 with: From 018259ca63342abc17e16d6856a6367ff0727a6a Mon Sep 17 00:00:00 2001 From: ROY Date: Fri, 24 Apr 2026 09:15:45 +0200 Subject: [PATCH 2/4] fix: update release workflow --- .github/workflows/manual_release.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/manual_release.yml b/.github/workflows/manual_release.yml index 46f3b21..340162e 100644 --- a/.github/workflows/manual_release.yml +++ b/.github/workflows/manual_release.yml @@ -51,6 +51,5 @@ jobs: file: Dockerfile platforms: linux/amd64,linux/arm64 push: true - tags: | - ${{ steps.login-ecr.outputs.registry }}/${{ env.IMAGE_NAME }}:${{ github.event.inputs.tag }} + tags: | ghcr.io/${{ github.repository }}/${{ env.IMAGE_NAME }}:${{ github.event.inputs.tag }} From b6b7e29d0cd771c2a5b437a63bc4c3dc3f295d66 Mon Sep 17 00:00:00 2001 From: ROY Date: Fri, 24 Apr 2026 09:16:18 +0200 Subject: [PATCH 3/4] fix: remove stale ecr configuration --- .github/workflows/release.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 29b0d05..facd932 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -94,5 +94,4 @@ jobs: tags: | ghcr.io/${{ github.repository }}/ewx-worker-node-server:latest ghcr.io/${{ github.repository }}/ewx-worker-node-server:${{ needs.release-module.outputs.new_version }} - # ${{ steps.login-ecr.outputs.registry }}/${{ env.IMAGE_NAME }}:latest - # ${{ steps.login-ecr.outputs.registry }}/${{ env.IMAGE_NAME }}:${{ needs.release-module.outputs.new_version }} + From b9a22653bfe02c47f615c71ca94cc36b2b5a35d4 Mon Sep 17 00:00:00 2001 From: ROY Date: Fri, 24 Apr 2026 09:20:55 +0200 Subject: [PATCH 4/4] fix: remove ecr comments