Skip to content

Commit

Permalink
First commit
Browse files Browse the repository at this point in the history
  • Loading branch information
bkreider committed Jun 18, 2024
1 parent c06ddf3 commit e3ab40b
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/daily_build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Kick off build
on:
schedule:
# Midnight daily
- cron: "10 5 * * *"

permissions:
contents: write

jobs:
build:
runs-on: ubuntu-latest
name: Trigger build
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
id: checkout
with:
ref: dailybuild
- name: Commit empty to trigger build
env:
BRANCH: dailybuild
run: |
date=$(date +"%Y.%m.%d")
git config --global user.name bkreider
git config --global user.email "[email protected]"
git commit -m "Build: $date" --allow-empty
git push origin "$BRANCH"
9 changes: 9 additions & 0 deletions abs.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
aggregate_check: false

upload_without_merge: true

upload_channels:
- services

channels:
- services

0 comments on commit e3ab40b

Please sign in to comment.