From 47a4a6190f866b6d6de482994970ecba20dcde28 Mon Sep 17 00:00:00 2001 From: Mike Christof Date: Mon, 22 Nov 2021 12:10:25 +0000 Subject: [PATCH] remove release job --- .github/workflows/release.yml | 44 ----------------------------------- 1 file changed, 44 deletions(-) delete mode 100644 .github/workflows/release.yml diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml deleted file mode 100644 index d5be3c4..0000000 --- a/.github/workflows/release.yml +++ /dev/null @@ -1,44 +0,0 @@ -name: release - -on: - push: - tags: - - v* - -jobs: - build: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - - run: make test - - run: make all - - name: Create Release - id: create_release - uses: actions/create-release@v1 - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - with: - tag_name: ${{ github.ref }} - release_name: Release ${{ github.ref }} - draft: false - prerelease: false - - name: Upload Release Asset (darwin) - id: upload-release-asset-darwin - uses: actions/upload-release-asset@v1 - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - with: - upload_url: ${{ steps.create_release.outputs.upload_url }} - asset_path: ./bin/githubactions-docs.darwin - asset_name: githubactions-docs.darwin - asset_content_type: application/octet-stream - - name: Upload Release Asset (linux) - 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: ./bin/githubactions-docs.linux - asset_name: githubactions-docs.linux - asset_content_type: application/octet-stream