diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index e00dee0..ea870c0 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -47,6 +47,12 @@ jobs: - name: Build the docker images. run: docker compose --profile ${{ matrix.profile }} build --progress plain + - name: Not on Monday or Wednesday + if: github.event.schedule != '30 5 * * 1,3' + run: echo "This step will be skipped on Monday and Wednesday" + - name: Every time + run: echo "This step will always run" + - name: ehco info if: {{vars.DOCKERHUB_USERNAME}} run: echo env ${{env.DOCKERHUB_USERNAME}} vars ${{vars.DOCKERHUB_USERNAME}}