We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 72db10e commit 3905ad6Copy full SHA for 3905ad6
.github/workflows/ci.yml
@@ -13,6 +13,12 @@ jobs:
13
- name: Checkout repository
14
uses: actions/checkout@v4
15
16
+ - name: Log in to Docker Hub
17
+ uses: docker/login-action@v3
18
+ with:
19
+ username: ${{ vars.DOCKERHUB_USERNAME }}
20
+ password: ${{ secrets.DOCKERHUB_TOKEN }}
21
+
22
- name: Set up Bun
23
uses: oven-sh/setup-bun@v2
24
with:
@@ -42,12 +48,6 @@ jobs:
42
48
type=raw,value=gh-${{ github.run_id }}
43
49
type=sha,format=short
44
50
45
- - name: Log in to Docker Hub
46
- uses: docker/login-action@v3
47
- with:
- username: ${{ vars.DOCKERHUB_USERNAME }}
- password: ${{ secrets.DOCKERHUB_TOKEN }}
-
51
- name: Build and push Docker image
52
uses: docker/build-push-action@v6
53
0 commit comments