install calibre in path #35
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
on: | |
# always trigger a draft release | |
push: | |
name: Latest Release | |
permissions: | |
contents: write | |
defaults: | |
run: | |
shell: bash | |
jobs: | |
release: | |
name: Create Release | |
runs-on: 'ubuntu-latest' | |
strategy: | |
matrix: | |
goosarch: | |
- "linux/amd64" | |
# Add other GOOS/GOARCH combinations if needed | |
if: startsWith(github.ref, 'refs/tags/') # Ensure this job runs only for tag pushes | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-go@v2 | |
with: | |
go-version: '1.22.x' | |
- name: Get OS and arch info | |
run: | | |
GOOSARCH=${{matrix.goosarch}} | |
GOOS=${GOOSARCH%/*} | |
GOARCH=${GOOSARCH#*/} | |
BINARY_NAME=${{github.repository}}-$GOOS-$GOARCH | |
echo "BINARY_NAME=$BINARY_NAME" >> $GITHUB_ENV | |
echo "GOOS=$GOOS" >> $GITHUB_ENV | |
echo "GOARCH=$GOARCH" >> $GITHUB_ENV | |
- name: Build | |
run: | | |
go build -o "$BINARY_NAME" -v | |
- name: Release Notes | |
run: | |
git log $(git describe HEAD~ --tags --abbrev=0)..HEAD --pretty='format:* %h %s%n * %an <%ae>' --no-merges >> ".github/RELEASE-TEMPLATE.md" | |
- name: Release with Notes | |
if: success() # Proceed with release only if previous steps were successful | |
uses: softprops/action-gh-release@v1 | |
with: | |
body_path: ".github/RELEASE-TEMPLATE.md" | |
draft: true | |
files: ${{env.BINARY_NAME}} | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |