Skip to content

Commit

Permalink
Fix release build error caused by git ownership check.
Browse files Browse the repository at this point in the history
  • Loading branch information
cristianberneanu committed Sep 26, 2023
1 parent e9e4636 commit 58c833a
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,19 +2,22 @@ name: Release
on:
push:
tags:
- 'v*'
- "v*"

jobs:
publish:
runs-on: ubuntu-latest
container: pgxn/pgxn-tools
container:
image: pgxn/pgxn-tools
steps:
- name: Install deps
run: |
sudo apt update
apt-get install -y jq
- name: Check out the repo
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Silence git error about dubious ownership
run: git config --global --add safe.directory /__w/pg_diffix/pg_diffix
- name: Package release
run: make package
- name: Make release draft
Expand Down

0 comments on commit 58c833a

Please sign in to comment.