|
| 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 | + } |
0 commit comments