Stencil Dev Release #98
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: 'Stencil Dev Release' | ||
on: | ||
workflow_dispatch: | ||
outputs: | ||
dev-version: | ||
description: The version that was just published to npm. | ||
value: ${{ jobs.get-dev-version.outputs.dev-version }} | ||
Check failure on line 8 in .github/workflows/release-dev.yml GitHub Actions / Stencil Dev ReleaseInvalid workflow file
|
||
jobs: | ||
build_core: | ||
name: Build | ||
uses: ./.github/workflows/build.yml | ||
get-dev-version: | ||
name: Get Dev Build Version | ||
needs: [build_core] | ||
runs-on: ubuntu-22.04 | ||
outputs: | ||
dev-version: ${{ steps.get-dev-version.outputs.DEV_VERSION }} | ||
steps: | ||
- name: Checkout Code | ||
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | ||
- name: Get Core Dependencies | ||
uses: ./.github/workflows/actions/get-core-dependencies | ||
- name: Download Build Archive | ||
uses: ./.github/workflows/actions/download-archive | ||
with: | ||
name: stencil-core | ||
path: . | ||
filename: stencil-core-build.zip | ||
- name: Get Version | ||
id: get-dev-version | ||
run: | | ||
# A unique string to publish Stencil under | ||
# e.g. "3.0.1-dev.1677185104.7c87e34" | ||
# | ||
# Pull this value from the compiled artifacts | ||
DEV_VERSION=$(./bin/stencil version) | ||
echo "Using version $DEV_VERSION" | ||
# store a key/value pair in GITHUB_OUTPUT | ||
# e.g. "DEV_VERSION=3.0.1-dev.1677185104.7c87e34" | ||
echo "DEV_VERSION=$DEV_VERSION" >> $GITHUB_OUTPUT | ||
shell: bash | ||
release-stencil-dev-build: | ||
name: Publish Dev Build | ||
needs: [get-dev-version, build_core] | ||
runs-on: ubuntu-22.04 | ||
permissions: | ||
id-token: write | ||
steps: | ||
- name: Checkout Code | ||
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | ||
- uses: ./.github/workflows/actions/publish-npm | ||
with: | ||
tag: dev | ||
version: ${{ needs.get-dev-version.outputs.dev-version }} | ||
token: ${{ secrets.NPM_TOKEN }} |