diff --git a/.github/workflows/publish-ecr.yaml b/.github/workflows/publish-ecr.yaml deleted file mode 100644 index 15ede2c8..00000000 --- a/.github/workflows/publish-ecr.yaml +++ /dev/null @@ -1,44 +0,0 @@ -name: ci -on: - push: - tags: - - '*' -jobs: - buildx: - runs-on: ubuntu-latest - steps: - - name: Checkout - uses: actions/checkout@v3 - - - name: Configure AWS Credentials - uses: aws-actions/configure-aws-credentials@v1 - with: - aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }} - aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }} - aws-region: us-east-1 - - - name: Login to Amazon ECR Public - id: login-ecr-public - uses: aws-actions/amazon-ecr-login@v1 - with: - registry-type: public - - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v2 - with: - platforms: linux/amd64,linux/arm64 - - name: Build and push - uses: docker/build-push-action@v3 - with: - context: "{{defaultContext}}" - push: true - tags: public.ecr.aws/kubefirst/console:${{ github.ref_name }} - - name: Create Release - id: create_release - uses: actions/create-release@v1 - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - with: - tag_name: ${{ github.ref }} - release_name: Release ${{ github.ref }} - draft: false - prerelease: false