Skip to content

Commit

Permalink
Add github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
paul121 committed Jul 2, 2024
1 parent b1c6dee commit 67cdf38
Show file tree
Hide file tree
Showing 3 changed files with 76 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/enforce-changelog.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: "Pull Request Changelog Enforcement Workflow"
on:
pull_request:
# The specific activity types are listed here to include "labeled" and "unlabeled" since the enforcer allows for skipping enforcement of the changelog being edited via the "skipLabels" property
types: [opened, synchronize, reopened, ready_for_review, labeled, unlabeled]

jobs:
# Enforces the update of a changelog file on every pull request
changelog:
runs-on: ubuntu-latest
steps:
# The checkout step is required since this action uses local git commands to enforce the changelog
- uses: actions/checkout@master
- uses: dangoslen/changelog-enforcer@v3
38 changes: 38 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
on:
push:
tags:
- 'v*' # Push events to matching v*, i.e. v1.0.0

name: Create Release

jobs:
build:
name: Create Release
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@master
- name: Set RELEASE_VERSION environment variable
run: echo "RELEASE_VERSION=${GITHUB_REF:10}" >> $GITHUB_ENV
- uses: actions/setup-node@master
with:
node-version: '22.x'
- run: npm ci
- run: npm run build
- name: Publish to NPM
run: |
npm config set //registry.npmjs.org/:_authToken ${NPM_TOKEN}
npm publish --ignore-scripts --access public
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
- name: Create artifact
run: |
mkdir ${{ env.RELEASE_VERSION }}-dist && cp dist/farmOS-timeline* ${{ env.RELEASE_VERSION }}-dist && zip -r ${{ env.RELEASE_VERSION }}-dist.zip ${{ env.RELEASE_VERSION }}-dist
- name: Create Release
uses: softprops/action-gh-release@6034af24fba4e5a8e975aaa6056554efe4c794d0 #0.1.13
with:
body: |
See [CHANGELOG.md](https://github.com/farmOS/farmOS-timeline/blob/${{ env.RELEASE_VERSION }}/CHANGELOG.md) for release notes.
files: ${{ env.RELEASE_VERSION }}-dist.zip
draft: false
prerelease: false
24 changes: 24 additions & 0 deletions .github/workflows/run-build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Run build
on:
push:
branches:
- main
pull_request:
branches:
- main

jobs:
build:
name: Run build
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@master
- uses: actions/setup-node@master
with:
node-version: '22.x'
- run: npm ci
- run: npm run build
- uses: actions/upload-artifact@v4
with:
path: dist

0 comments on commit 67cdf38

Please sign in to comment.