Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
DerGoogler committed Jun 10, 2023
1 parent 016882f commit e2d9284
Showing 1 changed file with 2 additions and 20 deletions.
22 changes: 2 additions & 20 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
@@ -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 }}

0 comments on commit e2d9284

Please sign in to comment.