-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
447 changed files
with
592 additions
and
51,766 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" |
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
Oops, something went wrong.