Skip to content

Commit

Permalink
Merge pull request #12 from DISIC/dev
Browse files Browse the repository at this point in the history
pencil: modifying config schema vlidation
  • Loading branch information
youssefElMkhantar authored Apr 8, 2024
2 parents 8caa431 + 68a988a commit 283b7c7
Show file tree
Hide file tree
Showing 16 changed files with 20,172 additions and 12,184 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/realease.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Release

on:
push:
branches:
- "preprod"
- "main"

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 dist package.json package-lock.json
- run: npx semantic-release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -38,3 +38,6 @@ lerna-debug.log*
.env
.env.development
.env.test

#compressed files
*.tar.gz
Loading

0 comments on commit 283b7c7

Please sign in to comment.