Skip to content

Commit b62c8f0

Browse files
committed
fix(ci): check out the repo before building the Docker image
The docker job in the release workflow had no checkout step, so the Dockerfile was missing. Add actions/checkout.
1 parent 3f61b52 commit b62c8f0

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

.github/workflows/release.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,8 @@ jobs:
6868
needs: release # build from the just-published npm version
6969
runs-on: ubuntu-latest
7070
steps:
71+
- uses: actions/checkout@v6
72+
7173
- name: Resolve version
7274
id: ver
7375
run: echo "v=${GITHUB_REF_NAME#v}" >> "$GITHUB_OUTPUT"

0 commit comments

Comments
 (0)