diff --git a/.github/workflows/publish.yaml b/.github/workflows/publish.yaml index 6112d13..2d4f132 100644 --- a/.github/workflows/publish.yaml +++ b/.github/workflows/publish.yaml @@ -53,18 +53,18 @@ jobs: - uses: actions/checkout@v4 with: fetch-depth: 1 - - name: Run Build and Publish Docker image - id: devices - uses: ./.github/actions/docker-push - with: - registry: ${{ env.REGISTRY }} - repository_lc: ${{ env.REPO_LC }} - token: ${{ secrets.GITHUB_TOKEN }} - image-name: device/${{ matrix.device }} - tag-name: ${{ github.ref_name }}-${{ matrix.module }} - working-directory: modules/${{ matrix.module }}/devices/${{ matrix.device }} - file: modules/${{ matrix.module }}/devices/${{ matrix.device }}/Dockerfile - platforms: linux/arm64 + # - name: Run Build and Publish Docker image + # id: devices + # uses: ./.github/actions/docker-push + # with: + # registry: ${{ env.REGISTRY }} + # repository_lc: ${{ env.REPO_LC }} + # token: ${{ secrets.GITHUB_TOKEN }} + # image-name: device/${{ matrix.device }} + # tag-name: ${{ github.ref_name }}-${{ matrix.module }} + # working-directory: modules/${{ matrix.module }}/devices/${{ matrix.device }} + # file: modules/${{ matrix.module }}/devices/${{ matrix.device }}/Dockerfile + # platforms: linux/arm64 build-and-push-modules: runs-on: ubuntu-latest @@ -86,15 +86,20 @@ jobs: - name: Generate Module Dockerfile shell: sh run: sh ./scripts/generate-module-dockerfile.sh ${{ matrix.module }} ${{ steps.run_tests.outputs.devices }} ${{ env.REGISTRY }} ${{ github.repository_owner }} ${{ env.REPO_LC }} ${{ github.ref_name }} - - name: Run Build and Publish Docker image - id: modules - uses: ./.github/actions/docker-push - with: - registry: ${{ env.REGISTRY }} - repository_lc: ${{ env.REPO_LC }} - token: ${{ secrets.GITHUB_TOKEN }} - image-name: module/${{ matrix.module }} - tag-name: ${{ github.ref_name }} - working-directory: modules - file: Dockerfile - platforms: linux/arm64 \ No newline at end of file + + - name: Print + shell: sh + run: cat ./Dockerfile + + # - name: Run Build and Publish Docker image + # id: modules + # uses: ./.github/actions/docker-push + # with: + # registry: ${{ env.REGISTRY }} + # repository_lc: ${{ env.REPO_LC }} + # token: ${{ secrets.GITHUB_TOKEN }} + # image-name: module/${{ matrix.module }} + # tag-name: ${{ github.ref_name }} + # working-directory: modules + # file: ./Dockerfile + # platforms: linux/arm64 \ No newline at end of file