File tree Expand file tree Collapse file tree 2 files changed +12
-4
lines changed
Expand file tree Collapse file tree 2 files changed +12
-4
lines changed Original file line number Diff line number Diff line change 99 runs-on : ubuntu-latest
1010 steps :
1111 - uses : actions/checkout@v4
12+ - name : Login to Docker Hub
13+ uses : docker/login-action@v3
14+ with :
15+ username : loshido
16+ password : ${{ secrets.HUB_TOKEN }}
17+ - name : Set up QEMU
18+ uses : docker/setup-qemu-action@v3
19+ - name : Set up Docker Buildx
20+ uses : docker/setup-buildx-action@v3
1221 - name : Build
1322 uses : docker/build-push-action@v6
1423 with :
15- tags : loshido/tidee:production
16- secrets : |
17- "github_token=${{ secrets.HUB_TOKEN }}"
24+ push : true
25+ tags : loshido/tidee:latest
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ WORKDIR /app
33
44COPY . .
55
6- RUN echo "{}" >> ./data/config.json
6+ RUN mkdir data && echo "{}" >> ./data/config.json
77RUN --mount=type=cache,target=./cache \
88 npm install
99RUN npm run build
You can’t perform that action at this time.
0 commit comments