Skip to content

Commit

Permalink
chore: Add v2 branch to GH action workflow (#1840)
Browse files Browse the repository at this point in the history
  • Loading branch information
AdrianGonz97 authored Aug 9, 2023
1 parent fa91c64 commit c8d3df3
Show file tree
Hide file tree
Showing 2 changed files with 56 additions and 1 deletion.
55 changes: 55 additions & 0 deletions .github/workflows/release-v2.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
name: Publish Prerelease Skeleton v2
on:
push:
branches:
- v2

concurrency: ${{ github.workflow }}-${{ github.ref }}

jobs:
release:
name: Build & Publish @latest Release
if: github.repository == 'skeletonlabs/skeleton'
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v3
with:
fetch-depth: 0

- name: Use PNPM v8
uses: pnpm/action-setup@v2
with:
version: 8

- name: Use Node v18
uses: actions/setup-node@v3
with:
node-version: 18

# PNPM Store cache setup
- name: Get pnpm store directory
id: pnpm-cache
run: |
echo "pnpm_cache_dir=$(pnpm store path)" >> $GITHUB_OUTPUT
- name: Setup pnpm cache
uses: actions/cache@v3
with:
path: ${{ steps.pnpm-cache.outputs.pnpm_cache_dir }}
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-pnpm-store-
- name: Install dependencies
run: pnpm install

- name: Create Release Pull Request or Publish
id: changesets
uses: changesets/action@v1
with:
commit: "chore(release): version package"
title: "chore(release): version package"
publish: pnpm ci:release
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: Update tw-settings.json after publish
if: steps.changesets.outputs.published == 'true'
continue-on-error: true
Expand Down

0 comments on commit c8d3df3

Please sign in to comment.