Skip to content

Commit

Permalink
changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Gabriele Panico committed Oct 10, 2023
1 parent 2660d64 commit 9d32838
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 6 deletions.
21 changes: 17 additions & 4 deletions .github/workflows/main-latest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,25 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
name: Check out the repo
- uses: docker/build-push-action@v2
name: Login to Docker Hub
- name: Check out the repo
uses: actions/checkout@v4

- name: Login to Docker Hub
uses: docker/login-action@v3

with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
repository: tiledesk/design-studio
tags: latest

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3

- name: Build and push
uses: docker/build-push-action@v5
with:
context: .
file: ./Dockerfile
push: true
tags: latest
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ jobs:
- name: Check out the repo
uses: actions/checkout@v2
- name: Push to Docker Hub
uses: docker/build-push-action@v1
uses: docker/build-push-action@v2
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
repository: tiledesk/design_studio
repository: tiledesk/design-studio
tag_with_ref: true

0 comments on commit 9d32838

Please sign in to comment.