mirror of
https://github.com/Mibew/simple-icons.git
synced 2024-11-17 19:04:13 +03:00
a4ca74602f
* Remove .travis.yml reference from .gitattributes * Minor refactoring of .svglintrc.js - Remove unused variables - Fix missing semi-colons - Remove unneeded indentation * Prevent error in clean command due to missing files * Fix indentations * Further improvements to Editorconfig and indentation * Format YAML files - Update indentation for array notation - Normalize use of newlines
84 lines
2.6 KiB
YAML
84 lines
2.6 KiB
YAML
name: Publish
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
|
|
jobs:
|
|
npm:
|
|
name: NPM Package
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v2
|
|
- name: Use Node.js 12.x
|
|
uses: actions/setup-node@v2
|
|
with:
|
|
node-version: 12.x
|
|
- name: Install dependencies
|
|
run: npm ci
|
|
- name: Sanity check
|
|
run: |
|
|
npm run lint
|
|
npm run test
|
|
- name: Deploy to NPM
|
|
uses: JS-DevTools/npm-publish@v1
|
|
with:
|
|
token: ${{ secrets.NPM_TOKEN }}
|
|
github:
|
|
name: GitHub release
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v2
|
|
- name: Use Node.js 12.x
|
|
uses: actions/setup-node@v2
|
|
with:
|
|
node-version: 12.x
|
|
- name: Install dependencies
|
|
run: npm ci
|
|
- name: Sanity check
|
|
run: |
|
|
npm run lint
|
|
npm run test
|
|
- name: Get commit message (for release title and body)
|
|
id: commit
|
|
uses: kceb/git-message-action@v1
|
|
- name: Get release title and body
|
|
id: release
|
|
run: |
|
|
COMMIT_MSG="$(echo "${{ steps.commit.outputs.git-message }}")"
|
|
RELEASE_TITLE="$(echo "$COMMIT_MSG" | head -n 1)"
|
|
echo "::set-output name=title::$RELEASE_TITLE"
|
|
RELEASE_BODY="$(echo "$COMMIT_MSG" | tail -n +3)"
|
|
echo "::set-output name=body::$RELEASE_BODY"
|
|
- name: Get release version
|
|
id: get-version
|
|
run: |
|
|
export PACKAGE_VERSION=$(cat package.json | grep 'version' | sed 's/[ \",:]//g' | sed 's/version//')
|
|
echo "::set-output name=version::$PACKAGE_VERSION"
|
|
- name: Create and push git tag
|
|
uses: actions-ecosystem/action-push-tag@v1
|
|
with:
|
|
tag: ${{ steps.get-version.outputs.version }}
|
|
message: ${{ steps.commit.outputs.git-message }}
|
|
- name: Create release
|
|
uses: actions/create-release@v1
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
with:
|
|
tag_name: ${{ steps.get-version.outputs.version }}
|
|
release_name: ${{ steps.release.outputs.title }}
|
|
body: ${{ steps.release.outputs.body }}
|
|
font:
|
|
name: Trigger simple-icons-font release
|
|
needs: npm
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Trigger simple-icons-font release
|
|
run: |
|
|
curl -X POST \
|
|
-H "Authorization: Bearer ${{ secrets.SIMPLE_ICONS_FONT_TOKEN }}" \
|
|
-d '{"ref":"develop"}' \
|
|
https://api.github.com/repos/simple-icons/simple-icons-font/actions/workflows/auto-release.yml/dispatches
|