-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: deploy docs from release tags
- support creating releases from release branch - disable docs deployment for insider releases
- Loading branch information
Birrer, Iwan
committed
Feb 13, 2025
1 parent
8a48af3
commit 5762480
Showing
2 changed files
with
21 additions
and
6 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
name: Display Variables | ||
|
||
on: | ||
workflow_dispatch: | ||
inputs: | ||
version: | ||
description: 'The version to release. Format vx.x.x(-[rc|beta].x)' | ||
required: true | ||
type: string | ||
push: | ||
|
||
jobs: | ||
display-variables: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: 'Display variables' | ||
run: | | ||
echo "github.ref_name: ${{ github.ref_name }}" | ||
echo "github.ref: ${{ github.ref }}" | ||
echo "rev-parse: $(git rev-parse --abbrev-ref HEAD)" |