ci(deps): update taiki-e/install-action action to v2.25.2 (#562) #151
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
name: release | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
release-please: | |
if: github.repository_owner == 'Mogyuchi' | |
permissions: | |
contents: write | |
pull-requests: write | |
runs-on: ubuntu-latest | |
outputs: | |
release_created: ${{ steps.release.outputs.release_created }} | |
tag_name: ${{ steps.release.outputs.tag_name }} | |
pr: ${{ steps.release.outputs.pr }} | |
steps: | |
- uses: google-github-actions/release-please-action@cc61a07e2da466bebbc19b3a7dd01d6aecb20d1e # v4.0.2 | |
id: release | |
with: | |
config-file: .github/.config/release-please-config.json | |
manifest-file: .release-please-manifest.json | |
skip-github-pull-request: ${{ startsWith(github.event.head_commit.message, 'release:') && github.event.head_commit.author.name == 'github-actions[bot]' }} | |
docker-publish: | |
needs: release-please | |
if: ${{ needs.release-please.outputs.release_created }} | |
permissions: | |
contents: write | |
packages: write | |
uses: ./.github/workflows/docker-publish.yml | |
with: | |
tag-name: ${{ needs.release-please.outputs.tag_name }} | |
post-release: | |
needs: [release-please, docker-publish] | |
if: ${{ needs.release-please.outputs.release_created }} | |
permissions: | |
contents: write | |
pull-requests: write | |
env: | |
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
GH_REPO: ${{ github.repository }} | |
runs-on: ubuntu-latest | |
steps: | |
- run: gh release edit ${{ needs.release-please.outputs.tag_name }} --draft=false | |
- name: Create published label | |
run: | | |
gh label create 'autorelease: published' --color=EDEDED || : | |
- name: Get PR number | |
id: pr-number | |
run: | | |
echo "pr_number=$(printf '${{ github.event.head_commit.message }}' | head -n1 | sed -nE 's/.+\(#([0-9]+)\)$/\1/p')" >> "$GITHUB_OUTPUT" | |
- name: Add comment to PR | |
run: | | |
printf ':robot: Successfully published to ${{ needs.docker-publish.outputs.image_url }} :truck:\n```\n${{ join(needs.docker-publish.outputs.image_tags, '\n') }}\n```' \ | |
| gh pr comment ${{ steps.pr-number.outputs.pr_number }} --body-file=- | |
- name: Change labels on PR | |
run: | | |
gh pr edit ${{ steps.pr-number.outputs.pr_number }} \ | |
--remove-label='autorelease: tagged' \ | |
--add-label='autorelease: published' |