iconoir/.github/workflows/release.yaml

73 lines
2 KiB
YAML
Raw Normal View History

name: Release
on:
push:
tags:
- 'v*'
jobs:
release:
name: Release
runs-on: ubuntu-latest
steps:
- name: Checkout repository
2023-09-24 13:12:17 +02:00
uses: actions/checkout@v4
2022-07-05 16:24:49 +02:00
with:
# We have to checkout main or PNPM fails. Tag should be on main anyway.
ref: main
- name: Setup
uses: ./.github/actions/setup
2022-07-05 16:24:49 +02:00
with:
node-registry: https://registry.npmjs.org
- name: Generate changelog file
uses: rhysd/changelog-from-release/action@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
file: packages/iconoir-flutter/CHANGELOG.md
commit: false
args: -d=false
- name: Build
run: pnpm run build
- name: Prepare packages
run: pnpm run prepublish-all
2022-07-05 16:24:49 +02:00
env:
TAG_NAME: ${{ github.ref_name }}
- name: Commit release
uses: stefanzweifel/git-auto-commit-action@v4
2022-07-05 16:24:49 +02:00
with:
commit_message: Release Version ${{ github.ref_name }}
branch: main
- name: Update tag
run: |
git -c user.email="actions@github.com" -c user.name="GitHub Actions" tag -fa ${{ github.ref_name }} -m "${{ github.ref_name }}"
git push -f origin ${{ github.ref_name }}
- name: Publish packages
run: pnpm -r publish --access public
2022-07-05 16:24:49 +02:00
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
continue-on-error: true
- name: Publish Flutter
2023-09-24 13:12:17 +02:00
uses: k-paxian/dart-package-publisher@v1.6
with:
2022-12-08 17:37:59 +01:00
credentialJson: ${{ secrets.PUB_CREDENTIAL_JSON }}
relativePath: ./packages/iconoir-flutter
- name: Trigger Website Workflow
uses: actions/github-script@v6
with:
script: |
github.rest.actions.createWorkflowDispatch({
owner: context.repo.owner,
repo: context.repo.repo,
workflow_id: 'website.yaml',
ref: 'main',
})