diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d62235f..c86cc57 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -15,7 +15,7 @@ jobs: - name: Build Docker image run: | docker build . \ - --file simple/Dockerfile \ + --file Dockerfile \ --tag lukasheinrich/folding:$GITHUB_SHA \ --compress docker images diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 8ec4a6d..78a4f72 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -21,8 +21,8 @@ jobs: username: ${{ secrets.DOCKER_USERNAME }} password: ${{ secrets.DOCKER_PASSWORD }} repository: lukasheinrich/folding - dockerfile: simple/Dockerfile - tags: latest,simple + dockerfile: Dockerfile + tags: latest - name: Build and Publish to Registry with Release Tag if: ${{ startsWith(github.ref, 'refs/tags/') }} uses: docker/build-push-action@v1 @@ -30,6 +30,6 @@ jobs: username: ${{ secrets.DOCKER_USERNAME }} password: ${{ secrets.DOCKER_PASSWORD }} repository: lukasheinrich/folding - dockerfile: simple/Dockerfile - tags: latest,latest-stable,simple + dockerfile: Dockerfile + tags: latest,latest-stable tag_with_ref: true