fix(ci): allow deploy job Podman socket access
This commit is contained in:
parent
d61d296ea1
commit
35cb1574b4
2 changed files with 4 additions and 0 deletions
|
|
@ -49,6 +49,9 @@ jobs:
|
||||||
needs: ci
|
needs: ci
|
||||||
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
|
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
|
||||||
runs-on: docker
|
runs-on: docker
|
||||||
|
container:
|
||||||
|
image: ghcr.io/catthehacker/ubuntu:act-latest
|
||||||
|
options: --security-opt label=disable
|
||||||
timeout-minutes: 30
|
timeout-minutes: 30
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
|
|
|
||||||
|
|
@ -275,6 +275,7 @@ describe("workspace boundaries", () => {
|
||||||
expect(workflow).toContain("bun run test");
|
expect(workflow).toContain("bun run test");
|
||||||
expect(workflow).toContain("bun run build");
|
expect(workflow).toContain("bun run build");
|
||||||
expect(workflow).toContain("needs: ci");
|
expect(workflow).toContain("needs: ci");
|
||||||
|
expect(workflow).toContain("options: --security-opt label=disable");
|
||||||
expect(workflow).toContain("github.event_name == 'push'");
|
expect(workflow).toContain("github.event_name == 'push'");
|
||||||
expect(workflow).toContain("github.ref == 'refs/heads/main'");
|
expect(workflow).toContain("github.ref == 'refs/heads/main'");
|
||||||
expect(workflow).toContain("docker inspect dimensionlab-website");
|
expect(workflow).toContain("docker inspect dimensionlab-website");
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue