Skip to content

Release

Release #10

Workflow file for this run

name: Release
on:
push:
tags:
- "*.*"
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.ref }}
cancel-in-progress: true
jobs:
build:
name: Build
runs-on: ubuntu-24.04
steps:
- name: Check out code into the Go module directory
uses: actions/checkout@v1
- name: Print version info
id: semver
run: |
make version
- name: Set up QEMU
id: qemu
uses: docker/setup-qemu-action@v1
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
- name: Build
env:
APPSCODE_ENV: prod
run: |
make release COMPRESS=yes
- name: Release
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
with:
files: |
bin/image-packer-darwin-amd64.tar.gz
bin/image-packer-darwin-arm64.tar.gz
bin/image-packer-linux-amd64.tar.gz
bin/image-packer-linux-arm.tar.gz
bin/image-packer-linux-arm64.tar.gz
bin/image-packer-windows-amd64.zip
bin/image-packer-checksums.txt
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}