Skip to content
This repository has been archived by the owner on Jul 12, 2024. It is now read-only.

retry artifacts request with half limit when timeout error #387

retry artifacts request with half limit when timeout error

retry artifacts request with half limit when timeout error #387

Workflow file for this run

name: Build
on:
pull_request:
push:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
steps:
- id: setup-node
name: Setup Node
uses: actions/setup-node@v3
with:
node-version: 18.x
- name: Check out code repository source code
uses: actions/checkout@v3
- name: Install dependencies
run: yarn
- name: Run tests
run: yarn test:ci
- name: Run build
run: yarn build
# Publishing is done in a separate job to allow
# for all matrix builds to complete.
release:
needs: test
runs-on: ubuntu-latest
if: github.ref == 'refs/heads/main'
steps:
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: 18.x
- name: Check out repo
uses: actions/checkout@v3
with:
fetch-depth: 2
# Fetch tags and describe the commit before the merge commit
# to see if it's a version publish
- name: Fetch tags
run: |
git fetch --tags
if git describe --exact-match --match "v*.*.*" HEAD^2
then
echo "Found version commit tag. Publishing."
echo "publish=true" >> $GITHUB_ENV
echo "VERSION_NUM=`echo $(git describe --tags --abbrev=0 | sed -e "s/v//gI")`" >> $GITHUB_ENV
else
echo "Version commit tag not found. Not publishing."
fi
- name: Publish
if: env.publish == 'true'
env:
NPM_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }}
run: |
echo "//registry.npmjs.org/:_authToken=${NPM_AUTH_TOKEN}" > .npmrc
yarn
yarn build
npm publish ./dist