Skip to content

Commit

Permalink
πŸ‘· (othr) [DSDK-364]: Setup snapshot releases (#211)
Browse files Browse the repository at this point in the history
  • Loading branch information
jdabbech-ledger authored Aug 27, 2024
2 parents a42e1a4 + 0796a4e commit e5ece4c
Showing 1 changed file with 47 additions and 0 deletions.
47 changes: 47 additions & 0 deletions .github/workflows/snapshot_release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
name: publish snapshot version of npm packages
on:
schedule:
- cron: "0 0 * * *"
workflow_dispatch:
inputs:
ref:
description: The base branch to publish a snapshot release from
required: true
default: "develop"
tag:
description: Snapshot version name
required: false
default: ""

env:
FORCE_COLOR: "1"
# if no inputs it's considered as a cron job
REF: ${{ inputs.ref || 'develop' }}
TAG: ${{ inputs.tag || 'develop' }}

jobs:
version:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
ref: ${{ env.REF }}

- uses: ./.github/actions/setup-toolchain-composite

- name: install dependencies
run: pnpm install

- name: build libraries
run: pnpm build

- name: create release pull request or publish
uses: changesets/action@v1
with:
version: pnpm bump --snapshot ${{ env.TAG }}
publish: pnpm release --no-git-tag
commit: "πŸ”– (snapshot-release): versioning packages"
title: "πŸ”– (snapshot-release) [NO-ISSUE]: versioning packages"
env:
GITHUB_TOKEN: ${{ github.token }}
NPM_TOKEN: ${{ secrets.NPMJS_TOKEN }}

0 comments on commit e5ece4c

Please sign in to comment.