-
Notifications
You must be signed in to change notification settings - Fork 28
88 lines (79 loc) · 2.55 KB
/
release.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
name: Release Stencil Sass
on:
workflow_dispatch:
inputs:
releaseType:
description: "Release type - major, minor or patch"
required: true
type: choice
default: "patch"
options:
- patch
- minor
- major
devRelease:
description: Set to "yes" to release a dev build
required: true
type: choice
default: "no"
options:
- "yes"
- "no"
jobs:
build_stencil_sass:
name: Build
uses: ./.github/workflows/build.yml
get_dev_version:
if: inputs.devRelease == 'yes'
name: Get Dev Build Version
runs-on: ubuntu-latest
outputs:
dev-version: ${{ steps.generate-dev-version.outputs.DEV_VERSION }}
steps:
- name: Checkout Code
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Generate Dev Version
id: generate-dev-version
run: |
PKG_JSON_VERSION=$(cat package.json | jq -r '.version')
GIT_HASH=$(git rev-parse --short HEAD)
# A unique string to publish Stencil Sass under
# e.g. "2.1.0-dev.1677185104.7c87e34"
DEV_VERSION=$PKG_JSON_VERSION-dev.$(date +"%s").$GIT_HASH
echo "Using version $DEV_VERSION"
# store a key/value pair in GITHUB_OUTPUT
# e.g. "DEV_VERSION=2.1.0-dev.1677185104.7c87e34"
echo "DEV_VERSION=$DEV_VERSION" >> $GITHUB_OUTPUT
shell: bash
release_sass_stencil:
if: inputs.devRelease == 'yes'
name: Publish Dev Build
needs: [build_stencil_sass, get_dev_version]
runs-on: ubuntu-latest
permissions:
id-token: write
steps:
- name: Checkout Code
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- uses: stenciljs/.github/actions/publish-npm@main
with:
tag: dev
version: ${{ needs.get_dev_version.outputs.dev-version }}
token: ${{ secrets.NPM_PAT_STENCIL_BOT }}
release_create_stencil_cli:
if: inputs.devRelease == 'no'
name: Publish Stencil Store
needs: [build_stencil_sass]
runs-on: ubuntu-latest
permissions:
contents: write
id-token: write
steps:
- name: Checkout Code
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- uses: stenciljs/.github/actions/publish-npm@main
with:
tag: latest
version: ${{ inputs.releaseType }}
token: ${{ secrets.NPM_PAT_STENCIL_BOT }}
github-token: ${{ secrets.GH_ADMIN_PAT }}