Skip to content

Commit

Permalink
fix ref
Browse files Browse the repository at this point in the history
  • Loading branch information
iskakaushik committed Oct 30, 2023
1 parent 89c4f7a commit 641bb4b
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/customer-docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,9 @@ jobs:

- name: extract branch name suffix for customer
id: branch
run: echo "::set-output name=branch::$(echo ${{ github.ref }} | sed 's/customer-//g')"
# from blah/blah/customer-foo-bar -> extract 'foo-bar'
run: |
echo "::set-output name=branch::$(echo $GITHUB_REF | sed -e 's/.*customer-//')"
- name: Build (optionally publish) PeerDB Images
uses: depot/bake-action@v1
Expand Down

0 comments on commit 641bb4b

Please sign in to comment.