ci: fix workflow name #14
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
name: Publish | |
on: | |
push: | |
tags: | |
- '*' | |
jobs: | |
build: | |
name: Publish binaries | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Build | |
run: ./package-build.sh "$PLATFORMS" | |
env: | |
TRAVIS_REPO_SLUG: ${{github.repository}} | |
TRAVIS_TAG: ${{github.ref_name}} | |
FULL_PRUNE: 1 | |
PLATFORMS: "ubuntu1404 ubuntu1604 alpine amazon2 amazon2023 debian10 debian11 centos7 centos8 rocky9 ubuntu1804 ubuntu2004 ubuntu2204 raspberrypi64" | |
- name: Sha512sum | |
run: cd dist && sha512sum ./*.tar.gz > "./monitoring-plugins_${TRAVIS_TAG}_sha512-checksums.txt" | |
env: | |
TRAVIS_REPO_SLUG: ${{github.repository}} | |
TRAVIS_TAG: ${{github.ref_name}} | |
- name: Upload binaries to release | |
uses: svenstaro/upload-release-action@v2 | |
with: | |
repo_token: ${{ secrets.GITHUB_TOKEN }} | |
file: dist/* | |
tag: ${{ github.ref_name }} | |
overwrite: true | |
file_glob: true | |