what the heck #9
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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 | |
- name: Generate build files | |
uses: thatisuday/[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 |