Skip to content

Merge branch 'main' of github.com:chrisvander/pkl-biome #40

Merge branch 'main' of github.com:chrisvander/pkl-biome

Merge branch 'main' of github.com:chrisvander/pkl-biome #40

Workflow file for this run

on:
push:
branches:
- main
permissions:
contents: write
pull-requests: write
name: release-please
jobs:
release-please:
runs-on: ubuntu-latest
outputs:
release_created: steps.release.release_created
steps:
- name: Create Release
uses: google-github-actions/release-please-action@v4
id: release
with:
release-type: simple
publish:
runs-on: ubuntu-latest
needs: [release-please]
steps:
- uses: actions/checkout@v4
- uses: jdx/mise-action@v2
with:
experimental: true
- name: Build Package
run: |
mise run pull-schema
pkl project package src
- name: Upload Release Artifact
if: ${{ needs.release-please.outputs.release_created }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
TAG=${{ needs.release-please.outputs.tag_name }}
VERSION=${TAG:1}
gh release upload ${{ needs.release-please.outputs.tag_name }} .out/pkl-biome@$VERSION/*