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

Commit

Permalink
Create main.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
mattatz authored Jul 11, 2021
1 parent add2f61 commit 62bfc21
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Deploy

on:
push:
branches: [main]

jobs:
deploy:
runs-on: ubuntu-18.04

steps:
- uses: actions/checkout@v2
- name: git config
run: |
git config --global user.email "[email protected]"
git config --global user.name "mattatz"
- run: yarn install
- run: yarn deploy
env:
GIT_USER: ${{ github.actor }}:${{ github.token }}

0 comments on commit 62bfc21

Please sign in to comment.