Skip to content

Commit

Permalink
Downgrade GitHub Docker actions
Browse files Browse the repository at this point in the history
  • Loading branch information
janheinrichmerker committed Sep 28, 2020
1 parent a4d0498 commit d76567d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
- name: "📥 Check-out"
uses: actions/checkout@v2
- name: "🚀 Build Docker image"
uses: docker/build-push-action@v2
uses: docker/build-push-action@v1
with:
path: frontend
push: false
Expand All @@ -21,7 +21,7 @@ jobs:
- name: "📥 Check-out"
uses: actions/checkout@v2
- name: "🚀 Build Docker image"
uses: docker/build-push-action@v2
uses: docker/build-push-action@v1
with:
path: backend
push: false
8 changes: 4 additions & 4 deletions .github/workflows/push-docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- name: "📥 Check-out"
uses: actions/checkout@v2
- name: "🚀 Build & push to GitHub Packages"
uses: docker/build-push-action@v2
uses: docker/build-push-action@v1
with:
registry: docker.pkg.github.com
username: ${{ github.actor }}
Expand All @@ -29,7 +29,7 @@ jobs:
labels: org.opencontainers.image.url=https://github.com/${{ github.repository }},org.opencontainers.image.documentation=https://github.com/${{ github.repository }},org.opencontainers.image.title=TARGER,org.opencontainers.image.description=Neural Argument Mining at Your Fingertips
add_git_labels: true
- name: "🚀 Build & push to Docker Hub"
uses: docker/build-push-action@v2
uses: docker/build-push-action@v1
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_TOKEN }}
Expand All @@ -45,7 +45,7 @@ jobs:
- name: "📥 Check-out"
uses: actions/checkout@v2
- name: "🚀 Build & push to GitHub Packages"
uses: docker/build-push-action@v2
uses: docker/build-push-action@v1
with:
registry: docker.pkg.github.com
username: ${{ github.actor }}
Expand All @@ -56,7 +56,7 @@ jobs:
labels: org.opencontainers.image.url=https://github.com/${{ github.repository }},org.opencontainers.image.documentation=https://github.com/${{ github.repository }},org.opencontainers.image.title=TARGER,org.opencontainers.image.description=Neural Argument Mining at Your Fingertips
add_git_labels: true
- name: "🚀 Build & push to Docker Hub"
uses: docker/build-push-action@v2
uses: docker/build-push-action@v1
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_TOKEN }}
Expand Down

0 comments on commit d76567d

Please sign in to comment.