Skip to content

Bump version to 0.3.0 #12

Bump version to 0.3.0

Bump version to 0.3.0 #12

Workflow file for this run

# workflow name
name: Generate release-artifacts
# on events
on:
push:
tags:
- '*'
# workflow tasks
jobs:
generate:
name: Generate cross-platform builds
runs-on: ubuntu-latest
steps:
- uses: olegtarasov/[email protected]
id: tagName
with:
tagRegex: "v(.*)" # Optional. Returns specified group text as tag name. Full tag string is returned if regex is not defined.
tagRegexGroup: 1 # Optional. Default is 1.
- name: Checkout the repository
uses: actions/checkout@v2
with:
submodules: true
- name: Generate build files
uses: adamruzicka/[email protected]
with:
platforms: 'linux/amd64'
package: 'src'
name: 'foreman_ygg_worker-${{ steps.tagName.outputs.tag }}'
compress: 'true'
dest: 'dist'
- name: Generate distribution tarball
run: |
make distribution-tarball
sudo mv *.tar.gz dist/
env:
VERSION: '${{ steps.tagName.outputs.tag }}'
- name: Upload binaries to release
uses: svenstaro/upload-release-action@v2
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: dist/*
tag: ${{ github.ref }}
overwrite: true
file_glob: true