Skip to content

Commit

Permalink
feat: initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
uulm-janbaudisch committed Aug 22, 2024
0 parents commit c5b03b6
Show file tree
Hide file tree
Showing 3 changed files with 55 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/One.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: One

on:
- push

jobs:
Build:
runs-on: ubuntu-latest
steps:
- name: Build
run: |
mkdir -p out
echo "Hello world one!" > out/index.html
- uses: actions/checkout@v4
with:
path: pages
- run: |
cd pages
git checkout pages
rm -rf one
cp -r ../out one
git config user.name "github-actions[bot]"
git config user.email "41898282+github-actions[bot]@users.noreply.github.com"
git add .
git commit -m "generated"
git pull --rebase
git push -u origin pages
27 changes: 27 additions & 0 deletions .github/workflows/Two.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Two

on:
- push

jobs:
Build:
runs-on: ubuntu-latest
steps:
- name: Build
run: |
mkdir -p out
echo "Hello world two!" > out/index.html
- uses: actions/checkout@v4
with:
path: pages
- run: |
cd pages
git checkout pages
rm -rf two
cp -r ../out two
git config user.name "github-actions[bot]"
git config user.email "41898282+github-actions[bot]@users.noreply.github.com"
git add .
git commit -m "generated"
git pull --rebase
git push -u origin pages
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Hello world!

0 comments on commit c5b03b6

Please sign in to comment.