Skip to content

Switch notice to ArgoCon EU 2024 #185

Switch notice to ArgoCon EU 2024

Switch notice to ArgoCon EU 2024 #185

Workflow file for this run

name: Deploy
on:
push:
branches:
- master
pull_request:
branches:
- 'master'
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Use Node.js 12.x
uses: actions/setup-node@v1
with:
node-version: 12.x
- uses: actions/cache@v1
with:
path: node_modules
key: ${{ runner.os }}-go-dep-${{ hashFiles('**/yarn.lock') }}
- name: dependencies
run: yarn install
- name: build
run: |
yarn build
- name: deploy
if: ${{ github.event_name == 'push' }}
uses: peaceiris/actions-gh-pages@v2.5.0
env:
PERSONAL_TOKEN: ${{ secrets.TOKEN }}
EXTERNAL_REPOSITORY: argoproj/argoproj.github.io
PUBLISH_BRANCH: master
PUBLISH_DIR: ./public