Skip to content
This repository was archived by the owner on Aug 12, 2025. It is now read-only.

Commit 83325ba

Browse files
authored
Merge pull request #273 from kubernetes-sigs/pr-post-perms
🏃 Fix issue with pr-post workflow
2 parents 9e56fbc + 3286dfb commit 83325ba

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

.github/workflows/pr-post.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,6 @@ jobs:
1313
steps:
1414
- name: Set up Docker Buildx
1515
uses: docker/setup-buildx-action@v1
16-
- uses: actions/setup-go@v2
17-
with:
18-
go-version: '1.16' # The Go version to download (if necessary) and use.
1916
- name: Setup kind
2017
uses: engineerd/[email protected]
2118
with:
@@ -54,4 +51,6 @@ jobs:
5451
PROJECT_ID: ${{ secrets.PROJECT_ID }}
5552
# This currently runs the tests serially, if we need to parallize
5653
# need to install ginkgo and use it to run the tests
57-
run: ./e2e.test -e2e.artifacts-folder=artifacts -e2e.config=config/e2e-config.yaml -ginkgo.focus='\[Smoke Test\]' -ginkgo.progress -ginkgo.trace -ginkgo.v
54+
run: |
55+
chmod +x e2e.text
56+
./e2e.test -e2e.artifacts-folder=artifacts -e2e.config=config/e2e-config.yaml -ginkgo.focus='\[Smoke Test\]' -ginkgo.progress -ginkgo.trace -ginkgo.v

0 commit comments

Comments
 (0)