Skip to content

Commit

Permalink
Setup GitHub Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
neeeerrd committed Jun 15, 2024
1 parent 963fc24 commit 83084a8
Showing 1 changed file with 38 additions and 0 deletions.
38 changes: 38 additions & 0 deletions .github/workflows/create-release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
name: Create release
on:
push:
tags:
- "v*"

jobs:
Create-release:
runs-on: ubuntu-latest
permissions:
contents: write

steps:
- name: Checkout repo
uses: actions/checkout@v4

- name: Node.js setup
uses: actions/setup-node@v4
with:
node-version: 20

- name: pnpm setup
uses: pnpm/action-setup@v4
with:
version: latest

- name: Dependencies setup
run: pnpm install --frozen-lockfile

- name: Building
run: pnpm run build

- name: Create release
uses: ncipollo/release-action@v1
with:
artifacts: "dist/concorde.asar"
makeLatest: true

0 comments on commit 83084a8

Please sign in to comment.