Skip to content

Commit 58c833a

Browse files
Fix release build error caused by git ownership check.
1 parent e9e4636 commit 58c833a

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

.github/workflows/release.yml

+6-3
Original file line numberDiff line numberDiff line change
@@ -2,19 +2,22 @@ name: Release
22
on:
33
push:
44
tags:
5-
- 'v*'
5+
- "v*"
66

77
jobs:
88
publish:
99
runs-on: ubuntu-latest
10-
container: pgxn/pgxn-tools
10+
container:
11+
image: pgxn/pgxn-tools
1112
steps:
1213
- name: Install deps
1314
run: |
1415
sudo apt update
1516
apt-get install -y jq
1617
- name: Check out the repo
17-
uses: actions/checkout@v2
18+
uses: actions/checkout@v3
19+
- name: Silence git error about dubious ownership
20+
run: git config --global --add safe.directory /__w/pg_diffix/pg_diffix
1821
- name: Package release
1922
run: make package
2023
- name: Make release draft

0 commit comments

Comments
 (0)