This repository has been archived by the owner on Jul 24, 2024. It is now read-only.
fix release page use long commitish (#2143) #170
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: dev | |
on: | |
push: | |
paths-ignore: | |
- 'docs/**' | |
- '**/README.md' | |
pull_request: | |
paths-ignore: | |
- 'docs/**' | |
- '**/README.md' | |
jobs: | |
set_version: | |
runs-on: ubuntu-latest | |
outputs: | |
VERSION: ${{ steps.version.outputs.VERSION }} | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: use VERSION file to support dev build on rel-branch | |
id: version | |
run: echo "VERSION=$(cat VERSION)" >> $GITHUB_OUTPUT | |
build: | |
needs: [ set_version ] | |
uses: ./.github/workflows/build.yml | |
with: | |
version: ${{ needs.set_version.outputs.VERSION }} |