Compare commits

...

23 Commits

Author SHA1 Message Date
mashal-m
b5dffad10d fix: add push and pr command 2023-02-27 16:34:22 +05:00
mashal-m
72f90f49c1 fix: add build job 2023-02-27 16:30:27 +05:00
mashal-m
08cf5fb3d5 fix: add build job 2023-02-27 16:28:10 +05:00
mashal-m
3b5a2e920f fix: add build job 2023-02-27 16:26:26 +05:00
mashal-m
018aea6a34 fix: add build job 2023-02-27 16:24:00 +05:00
mashal-m
e8e7ca8948 fix: fix yml issue 2023-02-27 14:59:27 +05:00
mashal-m
b1546638c4 fix: fix yml issue 2023-02-27 14:56:05 +05:00
mashal-m
cfb08bc933 fix: specify on push 2023-02-27 14:53:17 +05:00
mashal-m
e66a99769d fix: add pull req 2023-02-27 14:25:55 +05:00
mashal-m
2a2713be63 fix: remove pull req 2023-02-27 14:24:39 +05:00
mashal-m
5900d84b9f fix: add semantic release in test job 2023-02-27 13:50:54 +05:00
mashal-m
3c168919cf fix: add semantic release in test job 2023-02-26 00:30:50 +05:00
mashal-m
5ac0035fe4 fix: run next version flow 2023-02-25 20:30:53 +05:00
mashal-m
109643fd76 feat: add semantic release 2023-02-25 00:35:41 +05:00
mashal-m
69a4580b71 feat: add semantic release 2023-02-25 00:34:25 +05:00
mashal-m
96373856ff refactor: add name of flow 2023-02-25 00:22:32 +05:00
mashal-m
5357b87c7c refactor: add name of flow 2023-02-24 23:34:40 +05:00
mashal-m
4940a0145f refactor: add name of flow 2023-02-24 23:25:52 +05:00
mashal-m
45c749286e refactor: only new package config 2023-02-24 23:16:44 +05:00
mashal-m
d52c9c81a1 refactor: add node support 2023-02-24 22:56:36 +05:00
mashal-m
cb7d13edb1 refactor: add node support 2023-02-24 22:50:37 +05:00
mashal-m
2e188af447 refactor: add semantic release 2023-02-24 17:21:25 +05:00
mashal-m
e2c6f72004 refactor: add semantic release pkg 2023-02-24 17:19:02 +05:00
4 changed files with 9669 additions and 2 deletions

View File

@@ -7,6 +7,40 @@ on:
branches:
- '**'
jobs:
get-next-version:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
- run: npm ci
- run: npx semantic-release --dry-run
id: get-next-version
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
outputs:
new-release-published: ${{ steps.get-next-version.outputs.new-release-published }}
new-release-version: ${{ steps.get-next-version.outputs.new-release-version }}
build:
runs-on: ubuntu-latest
needs: get-next-version
if: needs.get-next-version.outputs.new-release-published == 'true'
steps:
- uses: actions/checkout@v3
- run: echo "The new release version is ${{ needs.get-next-version.outputs.new-release-version }}"
release:
runs-on: ubuntu-latest
needs: build
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16
- run: npm ci
- run: npx semantic-release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
tests:
runs-on: ubuntu-latest
strategy:

View File

@@ -1,6 +1,7 @@
{
"branch": "master",
"tagFormat": "v${version}",
"plugins": ["semantic-release-export-data"],
"verifyConditions": [
"@semantic-release/npm",
{

9633
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@@ -53,7 +53,8 @@
"react-test-renderer": "16.14.0",
"reactifex": "1.1.1",
"redux": "4.2.1",
"redux-saga": "1.2.2"
"redux-saga": "1.2.2",
"semantic-release-export-data": "^1.0.1"
},
"dependencies": {
"@edx/paragon": "20.28.4",