Skip to content

Commit

Permalink
[action] release housekeeping
Browse files Browse the repository at this point in the history
- separate create_release, goreleaser, and debian to parallelize
- 1.15.8
- ubuntu-20.04
  • Loading branch information
dopey committed Feb 23, 2021
1 parent 96b38cc commit 9652a89
Show file tree
Hide file tree
Showing 2 changed files with 70 additions and 8 deletions.
76 changes: 69 additions & 7 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:
jobs:
test:
name: Lint, Test, Build
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
outputs:
is_prerelease: ${{ steps.is_prerelease.outputs.IS_PRERELEASE }}
steps:
Expand All @@ -20,7 +20,7 @@ jobs:
name: Setup Go
uses: actions/setup-go@v2
with:
go-version: '^1.15.6'
go-version: '^1.15.8'
-
name: Install Deps
id: install-deps
Expand All @@ -39,10 +39,38 @@ jobs:
if [ $OUT -eq 0 ]; then IS_PRERELEASE=true; else IS_PRERELEASE=false; fi
echo "::set-output name=IS_PRERELEASE::${IS_PRERELEASE}"
release:
name: Create Release & Upload Assets
runs-on: ubuntu-latest
create_release:
name: Create Release
needs: test
runs-on: ubuntu-20.04
outputs:
is_prerelease: ${{ steps.is_prerelease.outputs.IS_PRERELEASE }}
steps:
-
name: Is Pre-release
id: is_prerelease
run: |
set +e
echo ${{ github.ref }} | grep "\-rc.*"
OUT=$?
if [ $OUT -eq 0 ]; then IS_PRERELEASE=true; else IS_PRERELEASE=false; fi
echo "::set-output name=IS_PRERELEASE::${IS_PRERELEASE}"
-
name: Create Release
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.ref }}
release_name: Release ${{ github.ref }}
draft: false
prerelease: ${{ steps.is_prerelease.outputs.IS_PRERELEASE }}

goreleaser:
name: Create Release & Upload Assets
runs-on: ubuntu-20.04
needs: create_release
steps:
-
name: Checkout
Expand All @@ -63,17 +91,51 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.PAT }}

release_deb:
name: Build & Release Debian package
runs-on: ubuntu-20.04
needs: create_release
steps:
-
name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
-
name: Set up Go
uses: actions/setup-go@v2
with:
go-version: '^1.15.8'
-
name: APT Install
id: aptInstall
run: sudo apt-get -y install build-essential debhelper fakeroot
-
name: Build Debian package
id: build
run: |
PATH=$PATH:/usr/local/go/bin:/home/admin/go/bin
make debian
-
name: Upload Debian Package
id: upload_deb
run: |
tag_name="${GITHUB_REF##*/}"
hub release edit $(find ./.releases -type f -printf "-a %p ") -m "" "$tag_name"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

build_upload_docker:
name: Build & Upload Docker Images
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
needs: test
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup Go
uses: actions/setup-go@v2
with:
go-version: '^1.15.6'
go-version: '^1.15.8'
- name: Build
id: build
run: |
Expand Down
2 changes: 1 addition & 1 deletion .goreleaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ release:
# in case there is an indicator for this in the tag e.g. v1.0.0-rc1
# If set to true, will mark the release as not ready for production.
# Default is false.
prerelease: auto
prerelease: false

# You can change the name of the release.
# Default is `{{.Tag}}`
Expand Down

0 comments on commit 9652a89

Please sign in to comment.