14 lines
270 B
YAML
14 lines
270 B
YAML
|
|
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
|