You've already forked go-template-container-webserver
24 lines
452 B
YAML
24 lines
452 B
YAML
---
|
|
name: Update Child Repos
|
|
concurrency: 1
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
|
|
defaults:
|
|
run:
|
|
shell: bash
|
|
|
|
jobs:
|
|
update:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- run: |
|
|
export GITEA_TOKEN=${{ secrets.GITEA_TOKEN }}
|
|
git config --global credential.helper store
|
|
echo "https://bryan%40pedini.dev:${GITEA_TOKEN}@git.bjphoster.com" > ~/.git-credentials
|
|
./update.sh
|