Compare commits
No commits in common. "main" and "v1.0.0" have entirely different histories.
2 changed files with 4 additions and 46 deletions
|
|
@ -16,7 +16,7 @@ permissions:
|
||||||
jobs:
|
jobs:
|
||||||
# Publishes the package to the private NPM registry
|
# Publishes the package to the private NPM registry
|
||||||
publish:
|
publish:
|
||||||
runs-on: default
|
runs-on: self-hosted
|
||||||
outputs:
|
outputs:
|
||||||
build_and_deploy: ${{ steps.version_check.outputs.build_and_deploy }}
|
build_and_deploy: ${{ steps.version_check.outputs.build_and_deploy }}
|
||||||
steps:
|
steps:
|
||||||
|
|
@ -24,48 +24,6 @@ jobs:
|
||||||
with:
|
with:
|
||||||
fetch-depth: 0
|
fetch-depth: 0
|
||||||
|
|
||||||
# Set up Node.js
|
|
||||||
- name: Set up Node.js version
|
|
||||||
uses: actions/setup-node@v3
|
|
||||||
with:
|
|
||||||
# Taken from [Repo README](https://github.com/actions/setup-node#readme)
|
|
||||||
#
|
|
||||||
# > Version Spec of the version to use in SemVer notation.
|
|
||||||
# > It also admits such aliases as lts/*, latest, nightly and canary builds
|
|
||||||
# > Examples: 12.x, 10.15.1, >=10.15.0, lts/Hydrogen, 16-nightly, latest, node
|
|
||||||
node-version: 'latest'
|
|
||||||
|
|
||||||
# Taken from [Repo README](https://github.com/actions/setup-node#readme)
|
|
||||||
#
|
|
||||||
# > Optional registry to set up for auth. Will set the registry in a project level .npmrc and .yarnrc file,
|
|
||||||
# > and set up auth to read in from env.NODE_AUTH_TOKEN.
|
|
||||||
# > Default: ''
|
|
||||||
registry-url: 'https://npm.pkg.bridgemanaccessible.ca'
|
|
||||||
|
|
||||||
# Taken from [Repo README](https://github.com/actions/setup-node#readme)
|
|
||||||
#
|
|
||||||
# > Optional scope for authenticating against scoped registries.
|
|
||||||
# > Will fall back to the repository owner when using the GitHub Packages registry (https://npm.pkg.github.com/).
|
|
||||||
scope: '@BridgemanAccessible'
|
|
||||||
|
|
||||||
# Install dependencies
|
|
||||||
- name: Install Dependencies
|
|
||||||
run: |
|
|
||||||
# Install Yarn globally
|
|
||||||
npm install -g yarn
|
|
||||||
|
|
||||||
# Not necessarily needed but keeping track of the current directory (so that we can return to it is just a good practice)
|
|
||||||
CURR_DIR="$PWD"
|
|
||||||
|
|
||||||
# Change into the repository directory
|
|
||||||
cd "$GITHUB_WORKSPACE"
|
|
||||||
|
|
||||||
# Install dependencies using Yarn
|
|
||||||
yarn install --frozen-lockfile
|
|
||||||
|
|
||||||
# Return to the original directory
|
|
||||||
cd "$CURR_DIR"
|
|
||||||
|
|
||||||
# Check if this is a "significant" commit that should trigger a new publish
|
# Check if this is a "significant" commit that should trigger a new publish
|
||||||
# This is done by checking if the latest git tag matches the version in the `package.json` file
|
# This is done by checking if the latest git tag matches the version in the `package.json` file
|
||||||
- name: Version Check
|
- name: Version Check
|
||||||
|
|
|
||||||
|
|
@ -1,9 +1,9 @@
|
||||||
{
|
{
|
||||||
"name": "@BridgemanAccessible/listmonk-node-client",
|
"name": "@BridgemanAccessible/listmonk-node-client",
|
||||||
"version": "1.0.4",
|
"version": "1.0.1",
|
||||||
"description": "A Node client library for Listmonk",
|
"description": "A Node client library for Listmonk",
|
||||||
"repository": "https://git.bridgemanaccessible.ca/Bridgeman-Accessible/listmonk-nodejs-client.git",
|
"repository": "https://github.com/AlanBridgeman/listmonk-nodejs-client.git",
|
||||||
"author": "Bridgeman Accessible<info@bridgemanaccessible.com>",
|
"author": "Alan Bridgeman<alan@alanbridgeman.ca>",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"demo": "yarn build && node dist/demo.js",
|
"demo": "yarn build && node dist/demo.js",
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue