Skip to content

Commit debfd1f

Browse files
committed
fix: update build workflow to use steps instead of uses for Docker job
1 parent a1490ad commit debfd1f

File tree

1 file changed

+9
-7
lines changed

1 file changed

+9
-7
lines changed

.github/workflows/build.yaml

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,12 @@ on:
1616

1717
jobs:
1818
docker:
19-
uses: pnstack/actions/docker-publish@main
20-
with:
21-
platforms: linux/amd64,linux/arm64
22-
dockerfile: Dockerfile
23-
context: .
24-
push_enabled: true
25-
registry: ghcr.io
19+
runs-on: ubuntu-latest
20+
steps:
21+
- uses: pnstack/actions/docker-publish@main
22+
with:
23+
platforms: linux/amd64,linux/arm64
24+
dockerfile: Dockerfile
25+
context: .
26+
push_enabled: true
27+
registry: ghcr.io

0 commit comments

Comments
 (0)