From 8e9f7c21b2d516fcef75b2ec9f3b6192661c024a Mon Sep 17 00:00:00 2001 From: TShapinsky Date: Thu, 31 Oct 2024 16:51:23 +0000 Subject: [PATCH] fix image tags --- .github/workflows/devcontainer.yml | 15 ++------------- 1 file changed, 2 insertions(+), 13 deletions(-) diff --git a/.github/workflows/devcontainer.yml b/.github/workflows/devcontainer.yml index edc6cff8..29171364 100644 --- a/.github/workflows/devcontainer.yml +++ b/.github/workflows/devcontainer.yml @@ -31,22 +31,11 @@ jobs: username: ${{ github.actor }} password: ${{ secrets.GITHUB_TOKEN }} - - name: Docker meta - uses: docker/metadata-action@v5 - id: meta - with: - images: | - ${{ env.REGISTRY }}/${{ github.repository }}/devcontainer - tags: | - type=ref,event=branch - type=sha - type=edge - - name: Pre-build dev container image uses: devcontainers/ci@v0.3 with: - imageName: ${{ env.REGISTRY }}/${{ github.repository }}/devcontainer:ts-devcontainers - imageTag: ${{ steps.meta.outputs.tags }} + imageName: ${{ env.REGISTRY }}/${{ github.repository }}/devcontainer + imageTag: ts-devcontainers cacheFrom: ${{ env.REGISTRY }}/${{ github.repository }}/devcontainer:ts-devcontainers push: always platform: linux/amd64,linux/arm64