mirror of
https://github.com/lucide-icons/lucide.git
synced 2025-12-28 21:57:35 +01:00
402 lines
12 KiB
YAML
402 lines
12 KiB
YAML
name: Release Packages
|
|
|
|
on:
|
|
push:
|
|
tags:
|
|
- 'v*'
|
|
|
|
workflow_dispatch:
|
|
inputs:
|
|
version:
|
|
description: 'Version'
|
|
required: true
|
|
|
|
jobs:
|
|
pre-build:
|
|
if: github.repository == 'lucide-icons/lucide' && contains('["locness3","ericfennis", "johnletey"]', github.actor)
|
|
runs-on: ubuntu-latest
|
|
outputs:
|
|
VERSION: ${{ steps.get_version.outputs.VERSION }}
|
|
|
|
steps:
|
|
- name: Get the version
|
|
id: get_version
|
|
run: |
|
|
echo $VERSION_REF
|
|
echo ::set-output name=VERSION::${VERSION_REF/refs\/tags\/\v}
|
|
env:
|
|
VERSION_REF: ${{ github.event.inputs.version || github.ref }}
|
|
|
|
lucide:
|
|
if: github.repository == 'lucide-icons/lucide'
|
|
runs-on: ubuntu-latest
|
|
needs: pre-build
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: actions/setup-node@v2.4.0
|
|
with:
|
|
node-version: '14'
|
|
cache: 'yarn'
|
|
|
|
- name: Install dependencies
|
|
run: yarn --prefer-offline
|
|
|
|
- name: Set Auth Token
|
|
run: npm config set //registry.npmjs.org/:_authToken ${{ secrets.NPM_TOKEN }}
|
|
|
|
- name: Set new version
|
|
run: yarn workspace lucide version --new-version ${{ needs.pre-build.outputs.VERSION }} --no-git-tag-version
|
|
|
|
- name: Build
|
|
run: yarn workspace lucide build
|
|
|
|
- name: Test
|
|
run: yarn workspace lucide test
|
|
|
|
- name: Publish
|
|
run: yarn workspace lucide publish
|
|
|
|
- name: Upload package.json
|
|
uses: actions/upload-artifact@v2
|
|
with:
|
|
name: lucide-package-json
|
|
path: packages/lucide/package.json
|
|
|
|
lucide-react:
|
|
if: github.repository == 'lucide-icons/lucide'
|
|
runs-on: ubuntu-latest
|
|
needs: pre-build
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: actions/setup-node@v2.4.0
|
|
with:
|
|
node-version: '14'
|
|
cache: 'yarn'
|
|
|
|
- name: Install dependencies
|
|
run: yarn --prefer-offline
|
|
|
|
- name: Set Auth Token
|
|
run: npm config set //registry.npmjs.org/:_authToken ${{ secrets.NPM_TOKEN }}
|
|
|
|
- name: Set package.json version lucide
|
|
run: yarn workspace lucide-react version --new-version ${{ needs.pre-build.outputs.VERSION }} --no-git-tag-version
|
|
|
|
- name: Build
|
|
run: yarn workspace lucide-react build
|
|
|
|
- name: Test
|
|
run: yarn workspace lucide-react test
|
|
|
|
- name: Publish
|
|
run: yarn workspace lucide-react publish
|
|
|
|
- name: Upload package.json
|
|
uses: actions/upload-artifact@v2
|
|
with:
|
|
name: lucide-react-package-json
|
|
path: packages/lucide-react/package.json
|
|
|
|
lucide-vue:
|
|
if: github.repository == 'lucide-icons/lucide'
|
|
runs-on: ubuntu-latest
|
|
needs: pre-build
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: actions/setup-node@v2.4.0
|
|
with:
|
|
node-version: '14'
|
|
cache: 'yarn'
|
|
|
|
- name: Install dependencies
|
|
run: yarn --prefer-offline
|
|
|
|
- name: Set Auth Token
|
|
run: npm config set //registry.npmjs.org/:_authToken ${{ secrets.NPM_TOKEN }}
|
|
|
|
- name: Set new version
|
|
run: yarn workspace lucide-vue version --new-version ${{ needs.pre-build.outputs.VERSION }} --no-git-tag-version
|
|
|
|
- name: Build
|
|
run: yarn workspace lucide-vue build
|
|
|
|
- name: Test
|
|
run: yarn workspace lucide-vue test
|
|
|
|
- name: Publish
|
|
run: yarn workspace lucide-vue publish
|
|
|
|
- name: Upload package.json
|
|
uses: actions/upload-artifact@v2
|
|
with:
|
|
name: lucide-vue-package-json
|
|
path: packages/lucide-vue/package.json
|
|
|
|
lucide-vue-next:
|
|
if: github.repository == 'lucide-icons/lucide'
|
|
runs-on: ubuntu-latest
|
|
needs: pre-build
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: actions/setup-node@v2.4.0
|
|
with:
|
|
node-version: '14'
|
|
cache: 'yarn'
|
|
|
|
- name: Install dependencies
|
|
run: yarn --prefer-offline
|
|
|
|
- name: Set Auth Token
|
|
run: npm config set //registry.npmjs.org/:_authToken ${{ secrets.NPM_TOKEN }}
|
|
|
|
- name: Set new version
|
|
run: yarn workspace lucide-vue-next version --new-version ${{ needs.pre-build.outputs.VERSION }} --no-git-tag-version
|
|
|
|
- name: Build
|
|
run: yarn workspace lucide-vue-next build
|
|
|
|
- name: Test
|
|
run: yarn workspace lucide-vue-next test
|
|
|
|
- name: Publish
|
|
run: yarn workspace lucide-vue-next publish
|
|
|
|
- name: Upload package.json
|
|
uses: actions/upload-artifact@v2
|
|
with:
|
|
name: lucide-vue-next-package-json
|
|
path: packages/lucide-vue-next/package.json
|
|
|
|
lucide-angular:
|
|
if: github.repository == 'lucide-icons/lucide'
|
|
runs-on: ubuntu-latest
|
|
needs: pre-build
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: actions/setup-node@v2.4.0
|
|
with:
|
|
node-version: '14'
|
|
cache: 'yarn'
|
|
|
|
- name: Install dependencies
|
|
run: yarn --prefer-offline
|
|
|
|
- name: Set Auth Token
|
|
run: npm config set //registry.npmjs.org/:_authToken ${{ secrets.NPM_TOKEN }}
|
|
|
|
- name: Set package.json version lucide
|
|
run: yarn workspace lucide-angular version --new-version ${{ needs.pre-build.outputs.VERSION }} --no-git-tag-version
|
|
|
|
- name: Build
|
|
run: yarn workspace lucide-angular build
|
|
|
|
- name: Test
|
|
run: yarn workspace lucide-angular test:headless
|
|
|
|
- name: Publish
|
|
run: yarn workspace lucide-angular publish dist
|
|
|
|
- name: Upload package.json
|
|
uses: actions/upload-artifact@v2
|
|
with:
|
|
name: lucide-angular-package-json
|
|
path: packages/lucide-angular/package.json
|
|
|
|
lucide-preact:
|
|
if: github.repository == 'lucide-icons/lucide'
|
|
runs-on: ubuntu-latest
|
|
needs: pre-build
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: actions/setup-node@v2.4.0
|
|
with:
|
|
node-version: '14'
|
|
cache: 'yarn'
|
|
|
|
- name: Install dependencies
|
|
run: yarn --prefer-offline
|
|
|
|
- name: Set Auth Token
|
|
run: npm config set //registry.npmjs.org/:_authToken ${{ secrets.NPM_TOKEN }}
|
|
|
|
- name: Set package.json version lucide
|
|
run: yarn workspace lucide-preact version --new-version ${{ needs.pre-build.outputs.VERSION }} --no-git-tag-version
|
|
|
|
- name: Build
|
|
run: yarn workspace lucide-preact build
|
|
|
|
- name: Test
|
|
run: yarn workspace lucide-preact test
|
|
|
|
- name: Publish
|
|
run: yarn workspace lucide-preact publish
|
|
|
|
- name: Upload package.json
|
|
uses: actions/upload-artifact@v2
|
|
with:
|
|
name: lucide-preact-package-json
|
|
path: packages/lucide-preact/package.json
|
|
|
|
lucide-font:
|
|
if: github.repository == 'lucide-icons/lucide'
|
|
runs-on: ubuntu-latest
|
|
needs: pre-build
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: actions/setup-node@v2.4.0
|
|
with:
|
|
node-version: '14'
|
|
cache: 'yarn'
|
|
|
|
- name: Install FontForge
|
|
run: sudo apt-get install zlib1g-dev fontforge
|
|
|
|
- name: Clone sfnt2woff-zopfli repo
|
|
run: git clone https://github.com/bramstein/sfnt2woff-zopfli.git sfnt2woff-zopfli
|
|
|
|
- name: Install and move sfnt2woff-zopfli
|
|
run: |
|
|
cd sfnt2woff-zopfli
|
|
make
|
|
sudo mv sfnt2woff-zopfli /usr/local/bin/sfnt2woff
|
|
|
|
- name: Clone woff2
|
|
run: git clone --recursive https://github.com/google/woff2.git
|
|
|
|
- name: Install woff2
|
|
run: |
|
|
cd woff2
|
|
sudo make clean all
|
|
sudo mv woff2_compress /usr/local/bin/ && sudo mv woff2_decompress /usr/local/bin/
|
|
|
|
- name: Install Font Custom dependency
|
|
run: sudo gem install fontcustom
|
|
|
|
- name: Install
|
|
run: yarn --prefer-offline
|
|
|
|
- name: Build Icon Font
|
|
run: |
|
|
mkdir build
|
|
list=(-200 -300 "" -500 -600)
|
|
command=''
|
|
for name in "${list[@]}"
|
|
do
|
|
subcommand="(yarn build:outline-icons --outputDir=converted_icons${name} && fontcustom compile "./converted_icons${name}" -h -n "lucide${name}" -o ./build -F)"
|
|
if [ -z "$command" ]
|
|
then
|
|
command="$subcommand";
|
|
else
|
|
command="$command & $subcommand";
|
|
fi
|
|
done
|
|
|
|
eval $command
|
|
|
|
- name: 'Upload to Artifacts'
|
|
uses: actions/upload-artifact@v1
|
|
with:
|
|
name: lucide-font
|
|
path: build
|
|
|
|
lucide-flutter:
|
|
if: github.repository == 'lucide-icons/lucide'
|
|
runs-on: ubuntu-latest
|
|
needs: [pre-build, lucide-font]
|
|
container:
|
|
image: cirrusci/flutter:latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: actions/download-artifact@v2
|
|
- uses: actions/cache@v2
|
|
with:
|
|
path: '~/.pub-cache'
|
|
key: ${{ runner.os }}-pub-${{ hashFiles('~/.pub-cache') }}
|
|
restore-keys: |
|
|
${{ runner.os }}-pub-
|
|
|
|
- name: Setup credentials
|
|
run: |
|
|
mkdir -p ~/.pub-cache
|
|
cat <<EOF > ~/.pub-cache/credentials.json
|
|
{
|
|
"accessToken": "${{ secrets.GOOGLE_OAUTH_ACCESS_TOKEN }}",
|
|
"refreshToken": "${{ secrets.GOOGLE_OAUTH_REFRESH_TOKEN }}",
|
|
"idToken": "${{ secrets.GOOGLE_OAUTH_ID_TOKEN }}",
|
|
"tokenEndpoint":"https://accounts.google.com/o/oauth2/token",
|
|
"scopes": [ "openid", "https://www.googleapis.com/auth/userinfo.email" ],
|
|
"expiration": 1629835569218
|
|
}
|
|
EOF
|
|
|
|
- name: Get packages
|
|
run: flutter pub get
|
|
working-directory: packages/lucide-flutter
|
|
|
|
- name: List lucide-font folder
|
|
run: ls lucide-font
|
|
|
|
- name: Move the assets files
|
|
run: mv lucide-font packages/lucide-flutter/assets
|
|
|
|
- name: Generate exports file
|
|
run: dart tool/generate_fonts.dart assets/lucide-preview.html
|
|
working-directory: packages/lucide-flutter
|
|
|
|
- name: Update yaml
|
|
run: sed -E 's/(version:)[^\n]*/\1 ${{ needs.pre-build.outputs.VERSION }}/;' pubspec.yaml > pubspec && mv pubspec pubspec.yaml
|
|
working-directory: packages/lucide-flutter
|
|
|
|
- name: Flutter publish
|
|
run: flutter pub publish -f
|
|
working-directory: packages/lucide-flutter
|
|
|
|
- name: Upload pubspec.yaml
|
|
uses: actions/upload-artifact@v2
|
|
with:
|
|
name: lucide-flutter-pubspec-yaml
|
|
path: packages/lucide-flutter/pubspec.yaml
|
|
|
|
|
|
post-release:
|
|
if: github.repository == 'lucide-icons/lucide'
|
|
runs-on: ubuntu-latest
|
|
needs: [pre-build, lucide, lucide-react, lucide-vue, lucide-vue-next, lucide-angular, lucide-preact, lucide-flutter, lucide-font]
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: actions/download-artifact@v2
|
|
|
|
- name: Commit package files
|
|
run: |
|
|
mv lucide-package-json/package.json packages/lucide/package.json
|
|
mv lucide-react-package-json/package.json packages/lucide-react/package.json
|
|
mv lucide-vue-package-json/package.json packages/lucide-vue/package.json
|
|
mv lucide-preact-package-json/package.json packages/lucide-preact/package.json
|
|
mv lucide-vue-next-package-json/package.json packages/lucide-vue-next/package.json
|
|
mv lucide-angular-package-json/package.json packages/lucide-angular/package.json
|
|
mv lucide-flutter-pubspec-yaml/pubspec.yaml packages/lucide-flutter/pubspec.yaml
|
|
|
|
- name: Commit package.jsons
|
|
run: |
|
|
git add packages/*/package.json packages/lucide-flutter/pubspec.yaml
|
|
git -c user.name="Lucide Bot" -c user.email="lucide-bot@users.noreply.github.com" \
|
|
commit -m ":package: Bump lucide package versions to ${{ needs.pre-build.outputs.VERSION }}" --no-verify --quiet
|
|
git remote set-url --push origin https://lucide-bot:${{ secrets.GITHUB_TOKEN }}@github.com/$GITHUB_REPOSITORY.git
|
|
git push origin HEAD:master
|
|
|
|
- name: Zip font and icons
|
|
run: |
|
|
zip -r lucide-font-${{ needs.pre-build.outputs.VERSION }}.zip lucide-font
|
|
zip -r lucide-icons-${{ needs.pre-build.outputs.VERSION }}.zip icons
|
|
|
|
- name: Release zip and fonts
|
|
uses: softprops/action-gh-release@v1
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.CREATE_RELEASE_TOKEN }}
|
|
with:
|
|
tag_name: v${{ needs.pre-build.outputs.VERSION }}
|
|
files: |
|
|
lucide-font-${{ needs.pre-build.outputs.VERSION }}.zip
|
|
lucide-icons-${{ needs.pre-build.outputs.VERSION }}.zip
|