Skip to content

Commit 5359069

Browse files
committed
Add plugin release workflow
1 parent dabdd2b commit 5359069

File tree

2 files changed

+120
-1
lines changed

2 files changed

+120
-1
lines changed

.github/workflows/publish-release.yml

+85
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,85 @@
1+
name: "Publish release"
2+
3+
on:
4+
workflow_call:
5+
inputs:
6+
tag:
7+
required: false
8+
type: string
9+
default: "${{ github.ref_name }}"
10+
release-name:
11+
required: false
12+
type: string
13+
default: "${{ github.ref_name }}"
14+
release-body:
15+
required: false
16+
type: string
17+
default: ""
18+
19+
jobs:
20+
publish-release:
21+
name: "Publish release"
22+
runs-on: "ubuntu-latest"
23+
container:
24+
image: "ghcr.io/glpi-project/plugin-builder"
25+
steps:
26+
- name: "Checkout"
27+
uses: "actions/checkout@v4"
28+
with:
29+
ref: "${{ inputs.tag }}"
30+
fetch-tags: true
31+
- name: "Build release archive"
32+
run: |
33+
composer install --no-progress --no-suggest --no-interaction --prefer-dist
34+
git config --global --add safe.directory $(pwd)
35+
vendor/bin/plugin-release --assume-yes --dont-check --nogithub --nosign --release "${{ inputs.tag }}" --verbose
36+
echo "PACKAGE_BASENAME=$(find "$(pwd)/dist/" -type f -name '*.tar.bz2' | xargs -n 1 basename)" >> $GITHUB_ENV
37+
echo "PACKAGE_PATH=$(find "$(pwd)/dist/" -type f -name '*.tar.bz2')" >> $GITHUB_ENV
38+
- name: "Compute values"
39+
run: |
40+
TAG_NAME="${{ inputs.tag }}"
41+
RELEASE_NAME="${{ inputs.release-name }}"
42+
RELEASE_BODY="${{ inputs.release-body }}"
43+
if [[ -z "${RELEASE_BODY}" && -f "CHANGELOG.md" ]]; then
44+
RELEASE_BODY="See [CHANGELOG.md](CHANGELOG.md) for changes details."
45+
fi
46+
echo "TAG_NAME=${TAG_NAME}" >> $GITHUB_ENV
47+
echo "RELEASE_NAME=${RELEASE_NAME}" >> $GITHUB_ENV
48+
echo "RELEASE_BODY=${RELEASE_BODY}" >> $GITHUB_ENV
49+
- name: "Create release"
50+
uses: "actions/github-script@v7"
51+
with:
52+
script: |
53+
try {
54+
const fs = await import('fs');
55+
const release = await github.rest.repos.createRelease(
56+
{
57+
tag_name: process.env.TAG_NAME,
58+
name: process.env.RELEASE_NAME,
59+
body: process.env.RELEASE_BODY,
60+
draft: true,
61+
prerelease: false,
62+
owner: context.repo.owner,
63+
repo: context.repo.repo,
64+
}
65+
);
66+
await github.rest.repos.uploadReleaseAsset(
67+
{
68+
release_id: release.data.id,
69+
name: process.env.PACKAGE_BASENAME,
70+
data: fs.readFileSync(process.env.PACKAGE_PATH),
71+
owner: context.repo.owner,
72+
repo: context.repo.repo,
73+
}
74+
);
75+
await github.rest.repos.updateRelease(
76+
{
77+
release_id: release.data.id,
78+
draft: false,
79+
owner: context.repo.owner,
80+
repo: context.repo.repo,
81+
}
82+
);
83+
} catch (error) {
84+
core.setFailed(error.message);
85+
}

README.md

+35-1
Original file line numberDiff line numberDiff line change
@@ -1 +1,35 @@
1-
# plugin-release-workflows
1+
# Plugin release workflows
2+
3+
## Publish release workflow
4+
5+
This workflow will publish a release corresponding to the given tag.
6+
7+
You can use this workflow using the following Github Actions configuration.
8+
The only requirement is the presence of the `glpi-project/tools` in the composer (dev) dependencies of the plugin.
9+
10+
```yaml
11+
name: "Plugin release"
12+
13+
on:
14+
push:
15+
tags:
16+
- '*'
17+
18+
jobs:
19+
publish-release:
20+
name: "Publish release"
21+
uses: "glpi-project/plugin-release-workflows/.github/workflows/publish-release.yml@v1"
22+
with:
23+
# The name of the tag.
24+
# Default: "${{ github.ref_name }}"
25+
tag: ""
26+
27+
# The name of the release.
28+
# Default: "${{ github.ref_name }}"
29+
release-name: ""
30+
31+
# The release description.
32+
# If the repository contains a `CHANGELOG.md` file, the default description will contain a link to this file,
33+
# otherwise, the description will be empty.
34+
release-body: ""
35+
```

0 commit comments

Comments
 (0)