Skip to content

Commit

Permalink
ci: remove tag requirement
Browse files Browse the repository at this point in the history
  • Loading branch information
panekj committed Jun 6, 2024
1 parent 4ee913e commit f345aec
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ on:
required: false
default: nightly
push:
tags: ["v[0-9]+.[0-9]+.[0-9]+*"]
pull_request:

env:
Expand All @@ -23,10 +22,13 @@ jobs:
include:
- runs-on: windows-latest
artefact: windows-x86_64

- runs-on: ubuntu-latest
artefact: linux-x86_64

- runs-on: macos-14
artefact: macos-arm64

- runs-on: macos-13
artefact: macos-x86_64
env:
Expand All @@ -51,12 +53,12 @@ jobs:

- name: Build grammars
if: always()
run: make
run: ./make.sh

- uses: actions/upload-artifact@v3
if: always()
with:
name: lapce-${{ matrix.artefact }}
name: ${{ matrix.artefact }}
path: |
./output
retention-days: 1

0 comments on commit f345aec

Please sign in to comment.