From 9020a6dce966f61c49a0dad2262eb0ee0ad10ae7 Mon Sep 17 00:00:00 2001 From: Simon Adorf Date: Wed, 14 Sep 2022 10:20:10 +0200 Subject: [PATCH] CI: Remove debugging commands from ci workflow. --- .github/workflows/ci.yml | 17 ++++------------- 1 file changed, 4 insertions(+), 13 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index dcedbcb0..c0997f1f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -16,7 +16,6 @@ on: branches: - master - stack # remove stack before merge - - feature/full-stack-image # remove before merge jobs: @@ -110,14 +109,12 @@ jobs: pytest -v release: - # TODO after debugging: Remove ' || true' if: >- github.repository == 'aiidalab/aiidalab-docker-stack' && (github.ref_type == 'tag' || github.ref_name == 'master') - || true needs: - build - # - test # TODO: enable after debugging + - test runs-on: ubuntu-latest timeout-minutes: 10 @@ -141,19 +138,13 @@ jobs: id: meta uses: docker/metadata-action@v4 env: ${{ fromJSON(needs.build.outputs.build_vars) }} - # TODO after debugging: - # 1. Fix registry - # 2. Remove suffix - # 3. Remove '|| true' from the raw tags. with: - images: ghcr.io/aiidalab/${{ matrix.target }} - flavor: | - suffix=-release + images: docker.io/aiidalab/${{ matrix.target }} tags: | type=edge type=ref,event=tag - type=raw,value=aiida-${{ env.AIIDA_VERSION }},enable=${{ github.ref_type == 'tag' || true }} - type=raw,value=python-${{ env.PYTHON_VERSION }},enable=${{ github.ref_type == 'tag' || true}} + type=raw,value=aiida-${{ env.AIIDA_VERSION }},enable=${{ github.ref_type == 'tag' }} + type=raw,value=python-${{ env.PYTHON_VERSION }},enable=${{ github.ref_type == 'tag' }} - name: Determine src image tag id: images run: |