From dc00278bea2b8babaec5946d0e109e4105632a02 Mon Sep 17 00:00:00 2001 From: Vali Date: Mon, 10 Aug 2020 15:52:27 +0200 Subject: [PATCH] Moved workflow to correct dir --- .github/workflows/release.yml | 41 +++++++++++++++++++++++++++++++++++ 1 file changed, 41 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..9ede199 --- /dev/null +++ b/.github/workflows/release.yml @@ -0,0 +1,41 @@ +on: + push: + # Sequence of patterns matched against refs/tags + tags: + - 'v*' # Push events to matching v*, i.e. v1.0, v20.15.10 + +name: Upload Release Asset + +jobs: + build: + name: Upload Release Asset + runs-on: ubuntu-latest + steps: + - name: Checkout code + uses: actions/checkout@v2 + - name: Get version + id: get_version + run: echo ::set-output name=VERSION::${GITHUB_REF#refs/*/} + - name: Zip files + run: | + zip -r ${{ steps.get_version.outputs.VERSION }}.zip * + - 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 + id: upload-release-asset + uses: actions/upload-release-asset@v1.0.2 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + with: + upload_url: ${{ steps.create_release.outputs.upload_url }} + asset_path: ./${{ steps.get_version.outputs.VERSION }}.zip + asset_name: ${{ steps.get_version.outputs.VERSION }}.zip + asset_content_type: application/zip \ No newline at end of file