-
Notifications
You must be signed in to change notification settings - Fork 6
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
1 parent
ceeee3d
commit 1aac303
Showing
1 changed file
with
4 additions
and
33 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 |
---|---|---|
@@ -1,40 +1,11 @@ | ||
name: "Plugin release" | ||
name: "Publish 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@v4" | ||
- 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" | ||
publish-release: | ||
name: "Publish release" | ||
uses: "glpi-project/plugin-release-workflows/.github/workflows/publish-release.yml@v1" |