From e2d92840de172606c974e4cafcddc603957cdd14 Mon Sep 17 00:00:00 2001 From: Der_Googler <54764558+DerGoogler@users.noreply.github.com> Date: Sat, 10 Jun 2023 12:38:31 +0200 Subject: [PATCH] . --- .github/workflows/release.yaml | 22 ++-------------------- 1 file changed, 2 insertions(+), 20 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 4df1a59..240a31d 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -1,45 +1,27 @@ name: release on: - push: - tags: [ v*.*.* ] jobs: - deploy: - name: Deploy - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - - name: Build - - - + - name: Build run: | - - zip -r "code-server-${{ steps.get_version.outputs.version }}.zip" . - + zip -r "code-server-release.zip" -x ".git" "README.md" ".github" . - id: get_version - uses: battila7/get-version-action@v2 - name: Publish - uses: softprops/action-gh-release@v1 - with: - files: 'code-server*' - draft: true env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}