-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #32 from FroggyFlox/31_rockstor-jslibs_releases_re…
…main_disconnected_from_rockstor-core Automate release creation post rockstor-core release #31
- Loading branch information
Showing
2 changed files
with
38 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# Exclude git config files from the generated tarball | ||
.git* export-ignore | ||
|
||
# Exclude .github files | ||
.github/** export-ignore |
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,33 @@ | ||
name: Create release | ||
on: | ||
workflow_dispatch: | ||
inputs: | ||
version: | ||
required: true | ||
description: version without release | ||
type: string | ||
target_branch: | ||
required: true | ||
description: branch to target when creating the release | ||
type: string | ||
jobs: | ||
create-release: | ||
name: Create a release based on version received | ||
runs-on: ubuntu-latest | ||
permissions: | ||
contents: write | ||
env: | ||
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
steps: | ||
- name: Checkout jslibs | ||
id: checkout-jslibs | ||
uses: actions/checkout@v3 | ||
with: | ||
ref: ${{ inputs.target_branch }} | ||
- name: Create release on rockstor/rockstor-jslibs | ||
id: create-jslibs-release | ||
run: | | ||
gh release create ${{ inputs.version }} \ | ||
--notes "Tagging for next rockstor-core release." \ | ||
--title "${{ inputs.version }}" \ | ||
--target ${{ inputs.target_branch }} |