for workflow
This commit is contained in:
parent
2d243cf6b5
commit
d7b1d408b3
1 changed files with 14 additions and 0 deletions
14
.forgejo/workflows/smoke.yml
Normal file
14
.forgejo/workflows/smoke.yml
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
name: smoke-test target mount
|
||||
on:
|
||||
push:
|
||||
branches: [ main ]
|
||||
|
||||
jobs:
|
||||
touch-file:
|
||||
runs-on: docker
|
||||
container:
|
||||
image: alpine:3.20
|
||||
steps:
|
||||
- name: write test file
|
||||
run: |
|
||||
echo "hello from forgejo $(date -u)" > /target/ci-test.txt
|
||||
Loading…
Reference in a new issue