Fix release build error caused by git ownership check. #12
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: | |
image: pgxn/pgxn-tools | |
options: --user 1001 | |
steps: | |
- 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 |