We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e833ff6 commit 0f97660Copy full SHA for 0f97660
.github/workflows/containerize.yaml
@@ -16,10 +16,10 @@ jobs:
16
17
steps:
18
- name: Checkout code
19
- uses: actions/checkout@v2
+ uses: actions/checkout@v4
20
21
- name: Login to GitHub Package Registry
22
- uses: docker/login-action@v1
+ uses: docker/login-action@v3
23
with:
24
registry: docker.pkg.github.com
25
username: ${{ github.actor }}
@@ -31,7 +31,7 @@ jobs:
31
secrets: ${{ toJSON(secrets) }}
32
33
- name: Setup .env file
34
- run: env >> .env
+ run: cp .env-example .env
35
36
- name: Build Docker image
37
run: docker build -t docker.pkg.github.com/${{ github.repository }}/${{ github.event.repository.name }}:latest .
0 commit comments