simple-icons/.github/workflows/publish.yml

129 lines
4.3 KiB
YAML
Raw Normal View History

name: Publish Releases
on:
push:
branches:
- master
jobs:
sanity-check:
name: Pre-publish checks
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
2023-09-17 20:56:03 +00:00
- name: Use Node.js 20.x
2024-03-09 16:28:21 +00:00
uses: actions/setup-node@v4
with:
2024-03-09 16:28:21 +00:00
node-version: 20
cache: npm
cache-dependency-path: '**/package.json'
- name: Install dependencies
run: npm i --ignore-scripts --no-audit --no-fund
- name: Run linters
run: npm run lint
- name: Build NodeJS package
run: npm run build
- name: Run tests
run: npm run test
npm:
name: NPM Package
needs: sanity-check
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
2023-09-17 20:56:03 +00:00
- name: Use Node.js 20.x
2024-03-09 16:28:21 +00:00
uses: actions/setup-node@v4
with:
2024-03-09 16:28:21 +00:00
node-version: 20
cache: npm
cache-dependency-path: '**/package.json'
- id: get-version
uses: ./.github/actions/get-version
- name: Install dependencies
run: npm i --ignore-scripts --no-audit --no-fund
- name: Reformat to regular markdown
2024-03-24 17:38:18 +00:00
run: ./scripts/release/reformat-markdown.js "${{ steps.get-version.outputs.version }}"
- name: Update SDK Typescript definitions
2024-03-24 17:38:18 +00:00
run: ./scripts/release/update-sdk-ts-defs.js
- name: Build NodeJS package
run: npm run build
- name: Deploy to NPM
2024-03-09 16:28:21 +00:00
uses: JS-DevTools/npm-publish@v3
with:
token: ${{ secrets.NPM_TOKEN }}
github:
name: GitHub release
needs: sanity-check
runs-on: ubuntu-latest
steps:
- uses: actions/create-github-app-token@v1
id: app-token
with:
app-id: ${{ vars.BOT_APP_ID }}
private-key: ${{ secrets.BOT_PRIVATE_KEY }}
- name: Checkout
uses: actions/checkout@v4
- name: Get commit message (for release title and body)
id: commit
uses: kceb/git-message-action@v3
- id: get-version
uses: ./.github/actions/get-version
- name: Reformat to regular markdown
2024-03-24 17:38:18 +00:00
run: ./scripts/release/reformat-markdown.js "${{ steps.get-version.outputs.version }}"
- name: Configure GIT credentials
run: |
git config user.name "simple-icons[bot]"
git config user.email "simple-icons[bot]@users.noreply.github.com"
# Commit that will only be included in the tag
- name: Commit CDN theme image links removal
Add some icons in Readme (#4816) * Add some icons in Readme * Align icons at left * Add some more icons * Remove inline image - Use relative icons path * Format Third Party Extensions as a table * force website build * added readme-icons foler with icons for the readme.md file, as well as icons for light and dark modes in the readme.md titles * restored corrupted svgs for readme-icons * moved the icons to asset/readme, added icons for Drawio, Hexo and Jetpack Compose * - Use `develop` branch absolutified links for README images - Strip dark image theme links before publish to Github and npm - Clean third party extensions table * Commit to tag (ony inside master branch) * Fix differences in README * Reintroduce link in README logo * Drop uneeded newline from README * Fix error in README * Add newlines for SVGs * Newlines for all SVGs * Reuse black icons from library * Commit using Github Actions bot * Reuse diagrams.net library icon for white version * Fix comment * Bump 'strip-gh-theme-links' action to v2 * removed assets/readme icons * Test with 'fill=white' * Test with 'style="fill:white"' * added filter:invert(1) to PHP, TS, Simple Icons and Blender * added readme-icons test, changed the name of light icons in assets/readme * reloaded icons in Readme * fixed typo in iconsPath for readme-icons test * fixed typo on the darkiconsPath resolution * restored absolute paths * minimized the white icons on assets/readme * restored test scripts * Apply changes * Disable color output testing in CI * Revert latest change Co-authored-by: Eric Cornelissen <ericornelissen@gmail.com> Co-authored-by: Álvaro Mondéjar <mondejar1994@gmail.com> Co-authored-by: Jorge Amado Soria Ramirez <darksoul.uci@gmail.com>
2022-01-09 21:04:36 +00:00
run: |
git add README.md
git commit -m 'Replace README CDN theme image links'
- name: Create and push git tag
run: |
set -e
tag="${{ steps.get-version.outputs.version }}"
git tag -a "${tag}" -m "${{ steps.commit.outputs.git-message }}"
git push origin "${tag}"
- name: Create release
2024-03-09 16:28:21 +00:00
uses: softprops/action-gh-release@v2
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ steps.get-version.outputs.version }}
2024-03-09 16:28:21 +00:00
name: ${{ steps.commit.outputs.title }}
body: ${{ steps.commit.outputs.body }}
font:
name: Trigger simple-icons-font release
needs: npm
runs-on: ubuntu-latest
steps:
- uses: actions/create-github-app-token@v1
id: app-token
with:
app-id: ${{ vars.BOT_APP_ID }}
private-key: ${{ secrets.BOT_PRIVATE_KEY }}
- name: Trigger simple-icons-font release
run: |
curl -X POST \
-H "Authorization: Bearer ${{ steps.app-token.outputs.token }}" \
-d '{"ref":"develop"}' \
https://api.github.com/repos/simple-icons/simple-icons-font/actions/workflows/auto-release.yml/dispatches
website:
name: Trigger simple-icons-website update
needs: npm
runs-on: ubuntu-latest
steps:
- uses: actions/create-github-app-token@v1
id: app-token
with:
app-id: ${{ vars.BOT_APP_ID }}
private-key: ${{ secrets.BOT_PRIVATE_KEY }}
- name: Trigger simple-icons-website update
run: |
curl -X POST \
-H "Authorization: Bearer ${{ steps.app-token.outputs.token }}" \
-d '{"ref":"master"}' \
https://api.github.com/repos/simple-icons/simple-icons-website/actions/workflows/auto-release.yml/dispatches