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

Merge pull request #5 from bvanjoi/upload #32

Merge pull request #5 from bvanjoi/upload

Merge pull request #5 from bvanjoi/upload #32

Workflow file for this run

name: Upload file
on:
push:
branches:
- main
jobs:
upload:
name: Build And Upload
runs-on: "ubuntu-latest"
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup git user
run: |
git config --global user.name "github-actions[bot]"
git config --global user.email "41898282+github-actions[bot]@users.noreply.github.com"
- name: Generate files
run: node scripts/upload.js ${{ secrets.GITHUB_TOKEN }}
- name: Push changes
uses: ad-m/github-push-action@master
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
branch: "data"