From c593e646d0e558a8f4364ea4092405ece2f37a2c Mon Sep 17 00:00:00 2001 From: David Christensen Date: Mon, 5 Feb 2024 15:12:23 -0600 Subject: [PATCH] fix: quoting in workflows --- .github/workflows/ci.yml | 2 +- .github/workflows/release.yml | 4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ec7a1d2..7ed1435 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 7647f9c..3b30e2c 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -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