Skip to content

Commit

Permalink
merge files
Browse files Browse the repository at this point in the history
  • Loading branch information
gconnect committed Mar 24, 2024
2 parents 0eb1338 + f370b3a commit 4575342
Showing 1 changed file with 39 additions and 0 deletions.
39 changes: 39 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
name: Release

on:
push:
branches:
- master

jobs:
release:
name: Release
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v2

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

- name: Install dependencies
run: npm install

- name: Run tests
run: npm test

- name: Check changed files
id: check_changes
run: |
CHANGED_FILES=$(git diff-tree --name-only HEAD^ HEAD)
echo "::set-output name=changed_files::$CHANGED_FILES"
- name: Bump version and publish
if: ${{ steps.check_changes.outputs.changed_files != *'apps'* && steps.check_changes.outputs.changed_files != *'bin'* }}
run: |
npm version patch --no-git-tag-version
git push origin master --follow-tags
npm publish

0 comments on commit 4575342

Please sign in to comment.