Skip to content

Commit

Permalink
Merge pull request #1 from DISIC/dev
Browse files Browse the repository at this point in the history
adding semantic release
  • Loading branch information
HamzaKhait authored Mar 19, 2024
2 parents 8caa431 + aafb8e3 commit 9abd7ca
Show file tree
Hide file tree
Showing 4 changed files with 15,148 additions and 7,510 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/realease.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Release

on:
push:

jobs:
release:
permissions:
contents: write
issues: write
pull-requests: write
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 20
- run: npm ci --force
- run: npm run build
- run: tar -czvf wce-api.tar.gz -C dist .
- run: npx semantic-release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Loading

0 comments on commit 9abd7ca

Please sign in to comment.