From ab1a8178967b224c6f0f52323388595ea45c42ff Mon Sep 17 00:00:00 2001 From: Bipin <87369440+bipinkrish@users.noreply.github.com> Date: Thu, 23 Feb 2023 14:20:18 +0530 Subject: [PATCH] Delete release.yml --- .github/workflows/release.yml | 57 ----------------------------------- 1 file changed, 57 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 771d3a7..0000000 --- a/.github/workflows/release.yml +++ /dev/null @@ -1,57 +0,0 @@ -name: Release - -on: - workflow_dispatch: - -jobs: - build_release: - permissions: write-all - name: build_release - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@v3 - - uses: actions/download-artifact@v3 - - name: Display structure of downloaded files - run: ls -R - - - name: release - uses: actions/create-release@v1 - id: create_release - with: - draft: false - prerelease: false - release_name: Latest Release - tag_name: ${{ github.ref }} - env: - GITHUB_TOKEN: ${{ github.token }} - - - name: upload linux artifact - uses: actions/upload-release-asset@v1 - env: - GITHUB_TOKEN: ${{ github.token }} - with: - upload_url: ${{ steps.create_release.outputs.upload_url }} - asset_path: .*.bin - asset_name: DeGourou - asset_content_type: application/gzip - - # - name: upload darwin artifact - # uses: actions/upload-release-asset@v1 - # env: - # GITHUB_TOKEN: ${{ github.token }} - # with: - # upload_url: ${{ steps.create_release.outputs.upload_url }} - # asset_path: ./bin/azblogfilter.darwin-amd64.tar.gz - # asset_name: azblogfilter.darwin-amd64.tar.gz - # asset_content_type: application/gzip - - - name: upload windows artifact - uses: actions/upload-release-asset@v1 - env: - GITHUB_TOKEN: ${{ github.token }} - with: - upload_url: ${{ steps.create_release.outputs.upload_url }} - asset_path: .*.exe - asset_name: DeGourou.exe - asset_content_type: application/zip \ No newline at end of file