We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e9e4636 commit 58c833aCopy full SHA for 58c833a
.github/workflows/release.yml
@@ -2,19 +2,22 @@ name: Release
2
on:
3
push:
4
tags:
5
- - 'v*'
+ - "v*"
6
7
jobs:
8
publish:
9
runs-on: ubuntu-latest
10
- container: pgxn/pgxn-tools
+ container:
11
+ image: pgxn/pgxn-tools
12
steps:
13
- name: Install deps
14
run: |
15
sudo apt update
16
apt-get install -y jq
17
- name: Check out the repo
- 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
21
- name: Package release
22
run: make package
23
- name: Make release draft
0 commit comments