Skip to content

Keep external link icon with link text (#226) #223

Keep external link icon with link text (#226)

Keep external link icon with link text (#226) #223

Workflow file for this run

name: Publish Bundle
on:
push:
tags:
- v*
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Cache node_modules
uses: actions/cache@v2
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- name: Install Dependencies
run: npm install
- name: Run Gulp Bundle
run: gulp bundle
- name: Create Release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
gh release create "${{ github.ref_name }}" ./build/ui-bundle.zip \
--repo="$GITHUB_REPOSITORY" \
--title="${{ github.ref_name }}" \
--generate-notes
- name: Trigger Netlify Build Hook
run: curl -X POST -d {} https://api.netlify.com/build_hooks/64e4682992f9ec30865c7c0b