Compare commits
No commits in common. "51c8bdfacfa70e2db4b4402d6fe2e56b0e624771" and "d0f2fc56909f710a677b7a91c51dccc5c468ad98" have entirely different histories.
51c8bdfacf
...
d0f2fc5690
2 changed files with 21 additions and 2 deletions
21
.forgejo/workflows/build-tools.yml
Normal file
21
.forgejo/workflows/build-tools.yml
Normal file
|
@ -0,0 +1,21 @@
|
||||||
|
|
||||||
|
on:
|
||||||
|
schedule:
|
||||||
|
- cron: 6 6 * * *
|
||||||
|
workflow_dispatch:
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
cleanup_podman:
|
||||||
|
runs_on: ubuntu-24.04
|
||||||
|
steps:
|
||||||
|
- run: podman system prune -a -f
|
||||||
|
|
||||||
|
build-node:
|
||||||
|
runs_on: ubuntu-24.04
|
||||||
|
depends_on:
|
||||||
|
- cleanup_podman
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v4
|
||||||
|
with:
|
||||||
|
lfs: true
|
||||||
|
- run: cd images/node/22 && podman build . -t internal__node:22
|
|
@ -1,7 +1,5 @@
|
||||||
---
|
---
|
||||||
on:
|
on:
|
||||||
schedule:
|
|
||||||
- cron: 6 6 * * *
|
|
||||||
push:
|
push:
|
||||||
branches:
|
branches:
|
||||||
- main
|
- main
|
||||||
|
|
Loading…
Add table
Reference in a new issue