chore(ci): finish configuring creating releases in CI

This commit is contained in:
Ethan Knowlton 2023-11-14 03:46:55 -05:00
parent e7a6f54ff9
commit 823983800e
4 changed files with 76 additions and 34 deletions

16
.github/release.yml vendored Normal file
View File

@ -0,0 +1,16 @@
changelog:
exclude:
labels:
- ignore-for-release
categories:
- title: Breaking Changes 🛠
labels:
- major
- breaking-change
- title: New Features 🎉
labels:
- minor
- feature
- title: Other

55
.github/workflows/release-please.yaml vendored Normal file
View File

@ -0,0 +1,55 @@
name: Release Please
on:
pull_request:
types:
- closed
permissions:
contents: write
pull-requests: write
jobs:
test:
if: |
github.event.pull_request.merged == true &&
github.ref_name == "master" &&
contains(github.event.pull_request.head.name, "release")
uses: ./.github/workflows/test.yaml
release-please:
if: |
github.event.pull_request.merged == true &&
github.ref_name == "master" &&
contains(github.event.pull_request.head.name, "release")
runs-on: ubuntu-latest
needs: [test]
steps:
- uses: actions/checkout@v2
- name: Setup Go
uses: actions/setup-go@v4
with:
go-version: "1.18.x"
- name: Build EchoIP binary
run: go build -o ./echoip ./cmd/echoip/main.go
- name: Upload Release Artifact
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
zip -r echoip-linux-amd64.zip echoip html LICENSE
- uses: google-github-actions/release-please-action@v3
with:
bootstrap-sha: "ef1f4b388c24e977ec63d6943ac8f0b0c5f51b58"
last-release-sha: "32a92399085082121675553e23d722605752519e"
release-type: "go"
release-as: "1.1.0"
command: "release-pr"
extra-files: |
echoip-linux-amd64-${{ github.ref_name }}.zip
echoip
html
LICENSE

View File

@ -1,32 +0,0 @@
name: Release
on:
push:
tags:
- "*"
jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup Go
uses: actions/setup-go@v4
with:
go-version: "1.18.x"
- name: Build EchoIP binary
run: go build -o ./echoip ./cmd/echoip/main.go
- name: Upload Release Artifact
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
zip -r echoip-linux-amd64-${{ github.ref_name }}.zip echoip html LICENSE
- name: Create Release
uses: ncipollo/release-action@v1
with:
artifacts: echoip-linux-amd64-${{ github.ref_name }}.zip
bodyFile: "CHANGELOG.md"

View File

@ -1,10 +1,13 @@
name: Test
on: [push]
on:
push:
branches:
- "*"
- "!master"
jobs:
test:
runs-on: ubuntu-latest
steps: