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

Bump follow-redirects from 1.14.9 to 1.15.4 #17

Bump follow-redirects from 1.14.9 to 1.15.4

Bump follow-redirects from 1.14.9 to 1.15.4 #17

Workflow file for this run

on: push
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 14
- run: npm install
- run: npm run build
- uses: actions/upload-artifact@v2
with:
name: dist
path: dist/
publish:
needs: build
runs-on: ubuntu-latest
if: github.ref == 'refs/heads/main'
steps:
- uses: actions/checkout@v2
with:
ref: github-pages
- uses: actions/download-artifact@v2
with:
name: dist
- run: |
git config --global user.name 'Raz Rotenberg'
git config --global user.email '[email protected]'
git add .
git commit -am "Publishing to GitHub Pages" || echo "nothing to commit"
git push