Fix release build error caused by git ownership check. #9
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Release | |
on: | |
push: | |
tags: | |
- 'v*' | |
jobs: | |
publish: | |
runs-on: ubuntu-latest | |
container: pgxn/pgxn-tools | |
steps: | |
- name: Install deps | |
run: | | |
sudo apt update | |
apt-get install -y jq | |
- name: Check out the repo | |
uses: actions/checkout@v3 | |
- name: Package release | |
run: make package | |
- name: Make release draft | |
uses: softprops/action-gh-release@v1 | |
with: | |
body_path: CHANGELOG.md | |
draft: true | |
prerelease: false |