18 lines
285 B
YAML
18 lines
285 B
YAML
name: Sync Source new
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
- develop
|
|
|
|
jobs:
|
|
sync:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: Test mount
|
|
run: |
|
|
touch /workspace-storage/test.txt
|
|
ls -la /workspace-storage |