Skip to content

Commit 0f97660

Browse files
committed
Fix build deploy
1 parent e833ff6 commit 0f97660

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/containerize.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@ jobs:
1616

1717
steps:
1818
- name: Checkout code
19-
uses: actions/checkout@v2
19+
uses: actions/checkout@v4
2020

2121
- name: Login to GitHub Package Registry
22-
uses: docker/login-action@v1
22+
uses: docker/login-action@v3
2323
with:
2424
registry: docker.pkg.github.com
2525
username: ${{ github.actor }}
@@ -31,7 +31,7 @@ jobs:
3131
secrets: ${{ toJSON(secrets) }}
3232

3333
- name: Setup .env file
34-
run: env >> .env
34+
run: cp .env-example .env
3535

3636
- name: Build Docker image
3737
run: docker build -t docker.pkg.github.com/${{ github.repository }}/${{ github.event.repository.name }}:latest .

0 commit comments

Comments
 (0)