Skip to content

Commit

Permalink
Release 4.0.7 (#194)
Browse files Browse the repository at this point in the history
* Fix: version bump to 4.0.7

* fix: OTS parsing warnings (#176)

* Fix: overwriting woff2 files by using different package other than fontello

* Fix: iconscout typo

* Fix: added uuid in unicons json (#191)

* Try: node version 14.x.x for actions

* Try: node version 14.x.x other actions workflow
  • Loading branch information
imzedi authored Mar 28, 2023
1 parent 762cff9 commit 54a29fe
Show file tree
Hide file tree
Showing 11 changed files with 971 additions and 113 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/npm-publish-pro.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: 10.16.3
node-version: 14.18.1
- name: Download & Build Icons
run: npm ci --progress=false && npm run update-json && npm run line:build && npm run solid:build && npm run thinline:build && npm run monochrome:build
env:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/npm-publish-rc-pro.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: 10.16.3
node-version: 14.18.1
- name: Download & Build Icons
run: npm ci --progress=false && npm run update-json && npm run line:build && npm run solid:build && npm run thinline:build && npm run monochrome:build
env:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/npm-publish-rc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
ref: ${{ github.head_ref }}
- uses: actions/setup-node@v1
with:
node-version: 10.16.3
node-version: 14.18.1
- name: Download & Build Icons
run: npm ci --progress=false && npm run line:build && npm run solid:build && npm run thinline:build && npm run monochrome:build
env:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/npm-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: 10.16.3
node-version: 14.18.1
- name: Download & Build Icons
run: npm ci --progress=false && npm run line:build && npm run solid:build && npm run thinline:build && npm run monochrome:build
env:
Expand All @@ -35,7 +35,7 @@ jobs:
DEST_DIR: 'release/${{ steps.extract_version.outputs.VERSION }}'
- uses: actions/setup-node@v1
with:
node-version: 10.16.3
node-version: 14.18.1
- name: Publish to NPM
run: printf "//registry.npmjs.org/:_authToken=${NPM_TOKEN}" > ~/.npmrc && npm publish --access=public
env:
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/update-icons.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: Update Icons

on:
on:
# Trigger the workflow on push or pull request,
# but only for the master branch
push:
Expand All @@ -12,15 +12,15 @@ jobs:
update-icons:
runs-on: ubuntu-latest
steps:
- if: github.event_name == 'push'
- if: github.event_name == 'push'
uses: actions/checkout@v2
- if: github.event_name == 'pull_request'
- if: github.event_name == 'pull_request'
uses: actions/checkout@v2
with:
ref: ${{ github.head_ref }}
- uses: actions/setup-node@v1
with:
node-version: 10.16.3
node-version: 14.18.1
- name: Download Line Icons
run: npm ci --progress=false && npm run line:download
env:
Expand All @@ -41,4 +41,4 @@ jobs:
uses: peter-evans/create-pull-request@v3
with:
token: ${{ secrets.GITHUB_TOKEN }}
title: Updated Icons
title: Updated Icons
Loading

0 comments on commit 54a29fe

Please sign in to comment.