Skip to content

Initial commit

Initial commit #14

Workflow file for this run

name: Update Repo
on:
push:
branches:
- main
workflow_dispatch:
jobs:
update-repo:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Download zip file
run: |
# curl -L -o espresso-main.zip https://gitlab.com/Monkfishare/espresso/-/archive/main/espresso-main.zip
curl -L -o espresso-main.zip https://codeload.github.com/kywimy/espresso/zip/refs/heads/main?token=BHXGADHZWS7ZWYCA4CSKE53G4MSYI
unzip espresso-main.zip -d espresso
rm -rf WB
mv espresso/espresso-main/* .
- name: Commit and Push changes
run: |
git config --local user.email "[email protected]"
git config --local user.name "GitHub Action"
git add WB/*
git commit -m "Initial commit"
git push