Skip to content

Commit

Permalink
fix: quoting in workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
pgguru committed Feb 5, 2024
1 parent 17fd1c6 commit c593e64
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest
container:
image: pgxn/pgxn-tools
options: -e AS_USER=pgtest
options: "-e AS_USER=pgtest"
steps:
- run: pg-start ${{ matrix.pg }}
- uses: actions/checkout@v4
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,9 @@ jobs:
release:
name: Release on PGXN
runs-on: ubuntu-latest
container: pgxn/pgxn-tools
container:
image: pgxn/pgxn-tools
options: "-e AS_USER=pgtest"
steps:
- name: Check out the repo
uses: actions/checkout@v4
Expand Down

0 comments on commit c593e64

Please sign in to comment.