From 0db236d3d62cf124e157ac8a72a3b002a59aa10f Mon Sep 17 00:00:00 2001 From: Uttarayan Mondal Date: Tue, 9 Mar 2021 18:20:35 +0530 Subject: [PATCH] Delete publish.yml --- .github/workflows/publish.yml | 35 ----------------------------------- 1 file changed, 35 deletions(-) delete mode 100644 .github/workflows/publish.yml diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml deleted file mode 100644 index c40520a..0000000 --- a/.github/workflows/publish.yml +++ /dev/null @@ -1,35 +0,0 @@ -name: ntext-cli - -on: - push: - tags: - - '*' - -jobs: - build: - runs-on: ubuntu-latest - - steps: - - name: Checkout - uses: actions/checkout@v1 - - - name: Install toolchain - uses: actions-rs/toolchain@v1 - with: - toolchain: stable - default: true - override: true - - - name: Build - run: cargo build --all --release && strip target/release/ntext-cli - - - name: Release - uses: softprops/actions-gh-release@v1 - if: startsWith(github.ref, 'refs/tags/') - with: - files: | - target/release/ntext-cli - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - -