iconoir/.github/workflows/release.yaml

77 lines
2.1 KiB
YAML
Raw Normal View History

name: Release
on:
push:
tags:
- 'v*'
workflow_dispatch: {}
jobs:
release:
name: Release
runs-on: ubuntu-latest
2023-10-29 00:51:03 +02:00
permissions:
2023-10-29 10:21:57 +01:00
contents: write
2023-10-29 00:51:03 +02:00
id-token: write
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
# env:
# TAG_NAME: ${{ github.ref_name }}
# - name: Commit release
# uses: stefanzweifel/git-auto-commit-action@v5
# 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
# env:
# NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
# NPM_CONFIG_PROVENANCE: 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',
# })