Skip to content

Commit

Permalink
Merge branch 'v2' into feat/user_view_prefs
Browse files Browse the repository at this point in the history
  • Loading branch information
mguellsegarra committed Sep 17, 2024
2 parents 08e04d2 + 829de91 commit 3c8594e
Show file tree
Hide file tree
Showing 8 changed files with 142 additions and 93 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/build_check.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Build Check on PR

on:
pull_request:
branches:
- v2
- v2-develop
- alpha

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
with:
fetch-depth: 1

- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: '20.5.0'

- name: Install dependencies
run: npm install

- name: Run build
run: npm run build
39 changes: 39 additions & 0 deletions .github/workflows/npm_publish.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
name: Manual NPM publish

on:
workflow_dispatch:
inputs:
version_tag:
description: 'Version tag'
required: true

concurrency:
group: "release"
cancel-in-progress: false

jobs:
release:
name: Release
runs-on: ubuntu-latest
steps:
- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: '20.5.0'
registry-url: 'https://registry.npmjs.org/'

- name: Checkout Repository
uses: actions/checkout@v2
with:
ref: ${{ github.event.inputs.version_tag }}

- name: Install Dependencies
run: npm ci

- name: Build
run: npm run build

- name: NPM publish
run: npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_ACCESS_TOKEN }}
70 changes: 65 additions & 5 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
name: Release

env:
LIBRARY_NAME: "gisce/powerp.js"

on:
push:
branches:
Expand All @@ -8,21 +11,29 @@ on:
- alpha
workflow_dispatch:

concurrency:
group: "release"
cancel-in-progress: false

jobs:
release:
name: Release
runs-on: ubuntu-latest
outputs:
release_type: ${{ steps.get_release_type.outputs.release_type }}
tag_name: ${{ steps.get_tag_name.outputs.tag_name }}
branch_name: ${{ steps.get_branch_name.outputs.branch_name }}
steps:
- name: Checkout Repository
uses: actions/checkout@v2
with:
fetch-depth: 0

- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: '20.5.0'

- name: Checkout Repository
uses: actions/checkout@v2
with:
fetch-depth: 1

- name: Install Dependencies
run: npm ci

Expand All @@ -31,3 +42,52 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GH_PAT }}
NPM_TOKEN: ${{ secrets.NPM_ACCESS_TOKEN }}
run: npx semantic-release

- name: Capture Release Type
id: get_release_type
run: |
if [ -f ".release-type" ]; then
release_type=$(cat .release-type)
echo "release_type=$release_type" >> $GITHUB_OUTPUT
else
echo "release_type=none" >> $GITHUB_OUTPUT
fi
shell: bash

- name: Capture Tag Name
id: get_tag_name
run: |
if [ -f ".release-tag" ]; then
tag_name=$(cat .release-tag)
echo "tag_name=$tag_name" >> $GITHUB_OUTPUT
else
echo "tag_name=none" >> $GITHUB_OUTPUT
fi
shell: bash

- name: Capture Branch Name
id: get_branch_name
run: echo "branch_name=${GITHUB_REF##*/}" >> $GITHUB_OUTPUT
shell: bash

update-dependents:
name: Update dependent projects
needs: release
if: needs.release.outputs.release_type != 'none'
runs-on: ubuntu-latest
strategy:
matrix:
include:
- project: "gisce/webclient"
# modify this in case that branches are not equivalent and exist between projects
branch: ${{ needs.release.outputs.branch_name }}
steps:
- name: Call update version dependency flow for each project
uses: gisce/[email protected]
with:
dependentProject: ${{ matrix.project }}
tagName: ${{ needs.release.outputs.tag_name }}
dependentProjectBranch: ${{ matrix.branch }}
libraryName: ${{ env.LIBRARY_NAME }}
githubToken: ${{ secrets.GH_PAT }}
releaseType: ${{ needs.release.outputs.release_type }}
28 changes: 0 additions & 28 deletions .github/workflows/update_dependent_projects_alpha.yaml

This file was deleted.

28 changes: 0 additions & 28 deletions .github/workflows/update_dependent_projects_v2-develop.yaml

This file was deleted.

28 changes: 0 additions & 28 deletions .github/workflows/update_dependent_projects_v2.yaml

This file was deleted.

4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 8 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@gisce/powerp.js",
"version": "2.3.1",
"version": "2.3.2",
"description": "PowERP Javascript Client",
"module": "./dist/powerpjs.es.js",
"files": [
Expand Down Expand Up @@ -115,7 +115,13 @@
"failComment": false
}
],
"@semantic-release/git"
"@semantic-release/git",
[
"@semantic-release/exec",
{
"prepareCmd": "echo ${nextRelease.type} > .release-type && echo ${nextRelease.gitTag} > .release-tag"
}
]
]
}
}

0 comments on commit 3c8594e

Please sign in to comment.