Skip to content

Commit

Permalink
update: actions & build
Browse files Browse the repository at this point in the history
  • Loading branch information
kainonly committed Aug 15, 2023
1 parent a38d778 commit 8d5b333
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
images: ${{ env.REGISTRY }}/excel

- name: Push Excel
uses: docker/build-push-action@v2
uses: docker/build-push-action@v4
with:
context: ./excel
push: true
Expand All @@ -75,7 +75,7 @@ jobs:
images: ${{ env.REGISTRY }}/schedule

- name: Push Schedule
uses: docker/build-push-action@v2
uses: docker/build-push-action@v4
with:
context: ./schedule
push: true
Expand All @@ -98,7 +98,7 @@ jobs:
images: ${{ env.REGISTRY }}/worker

- name: Push Worker
uses: docker/build-push-action@v2
uses: docker/build-push-action@v4
with:
context: ./worker
push: true
Expand Down
2 changes: 1 addition & 1 deletion excel/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ FROM alpine:edge

RUN apk add tzdata

COPY ../dist/excel /app/main
COPY ./dist/excel /app/main
WORKDIR /app

EXPOSE 9000
Expand Down
2 changes: 1 addition & 1 deletion worker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ FROM alpine:edge

RUN apk add tzdata

COPY ../dist/worker /app/main
COPY ./dist/worker /app/main
WORKDIR /app

CMD [ "./main" ]

0 comments on commit 8d5b333

Please sign in to comment.