Skip to content

Commit

Permalink
Add release.yml workflow.
Browse files Browse the repository at this point in the history
  • Loading branch information
jellyterra committed Sep 25, 2024
1 parent ee60e4e commit 25c13d0
Showing 1 changed file with 12 additions and 5 deletions.
17 changes: 12 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -1,14 +1,17 @@
# This workflow will build a golang project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go

name: Create Release
name: Release

on:
push:
# Sequence of patterns matched against refs/tags
tags:
- 'v*' # Push events to matching v*, i.e. v1.0, v20.15.10

permissions:
contents: write

jobs:
build:
name: Create Release
Expand Down Expand Up @@ -36,11 +39,15 @@ jobs:
go build -o ~/build/pagine-${{ github.ref }}-$GOOS-$GOARCH ./cmd/pagine
done
- name: Compress via Zstd
run: zstd ~/build/*

- name: Generate Checksums
run: sha256sum ~/build/*zst > ~/build/SHA256SUMS.txt

- name: Upload Artifact
uses: actions/upload-artifact@v4
with:
name: pagine
path: ~/build/*
run:
gh release -R ${{ github.repository_owner }}/${{ github.repository }} upload ${{ github.ref }} ~/build/SHA256SUMS.txt ~/build/*zst --clobber

- name: Create Release
id: create_release
Expand Down

0 comments on commit 25c13d0

Please sign in to comment.