From d3665f96641005b86b9aea83b044cd7d583c8867 Mon Sep 17 00:00:00 2001 From: Prayag Singh Date: Sun, 25 Apr 2021 17:17:38 +0530 Subject: [PATCH] created release.yml --- .github/workflows/release.yml | 74 +++++++++++++++++++++++++++++++++++ 1 file changed, 74 insertions(+) create mode 100644 .github/workflows/release.yml diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml new file mode 100644 index 0000000..ea14862 --- /dev/null +++ b/.github/workflows/release.yml @@ -0,0 +1,74 @@ +name: Release + +on: + push: + tags: + - '*' + paths: + - "*" + - "!README.md" + +jobs: + release: + name: Release + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - name: Setup go + uses: actions/setup-go@v2.1.3 + with: + go-version: '1.16.x' + - name: Create release artifacts + run: make release + env: + GOPATH: ${{ github.workspace }}/go + - name: Create Github Release + id: create_release + uses: actions/create-release@v1 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + with: + tag_name: ${{ github.ref }} + release_name: ${{ github.ref }} + draft: false + prerelease: false + - name: Upload release artifacts (Mac OS amd64) + id: upload-release-asset-mac + uses: actions/upload-release-asset@v1 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + with: + upload_url: ${{ steps.create_release.outputs.upload_url }} + asset_path: build/prometheus-jicofo-exporter-darwin-amd64 + asset_name: prometheus-jicofo-exporter-darwin-amd64 + asset_content_type: application/octet-stream + - name: Upload release artifacts (FreeBSD amd64) + id: upload-release-asset-freebsd + uses: actions/upload-release-asset@v1 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + with: + upload_url: ${{ steps.create_release.outputs.upload_url }} + asset_path: build/prometheus-jicofo-exporter-freebsd-amd64 + asset_name: prometheus-jicofo-exporter-freebsd-amd64 + asset_content_type: application/octet-stream + - name: Upload release artifacts (Linux amd64) + id: upload-release-asset-linux + uses: actions/upload-release-asset@v1 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + with: + upload_url: ${{ steps.create_release.outputs.upload_url }} + asset_path: build/prometheus-jicofo-exporter-linux-amd64 + asset_name: prometheus-jicofo-exporter-linux-amd64 + asset_content_type: application/octet-stream + - name: Upload release artifacts (shasums) + id: upload-release-asset-sha512sums + uses: actions/upload-release-asset@v1 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + with: + upload_url: ${{ steps.create_release.outputs.upload_url }} + asset_path: build/sha512sums.txt + asset_name: sha512sums.txt + asset_content_type: application/octet-stream