-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Automatically build and draft release on tag push
- Loading branch information
1 parent
0ed35c1
commit 47a6f07
Showing
2 changed files
with
547 additions
and
328 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,40 @@ | ||
name: "Plugin release" | ||
|
||
on: | ||
push: | ||
tags: | ||
- '*' | ||
|
||
jobs: | ||
create-release: | ||
name: "Create release" | ||
runs-on: "ubuntu-latest" | ||
steps: | ||
- name: "Extract tag name" | ||
run: | | ||
echo "tag_name=${GITHUB_REF#refs/tags/}" >> $GITHUB_ENV | ||
- name: "Checkout" | ||
uses: "actions/checkout@v2" | ||
- name: "Build package" | ||
id: "build-package" | ||
uses: "glpi-project/tools/github-actions/[email protected]" | ||
with: | ||
plugin-version: ${{ env.tag_name }} | ||
- name: "Create release" | ||
id: "create-release" | ||
uses: "actions/create-release@v1" | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
tag_name: ${{ env.tag_name }} | ||
release_name: ${{ env.tag_name }} | ||
draft: true | ||
- name: "Attach package to release" | ||
uses: "actions/upload-release-asset@v1" | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
upload_url: ${{ steps.create-release.outputs.upload_url }} | ||
asset_path: ${{ steps.build-package.outputs.package-path }} | ||
asset_name: ${{ steps.build-package.outputs.package-basename }} | ||
asset_content_type: " application/x-bzip2" |
Oops, something went wrong.