aboutsummaryrefslogtreecommitdiff
path: root/action.yml
blob: 52becba4ee47efc74a87655ee51159b0f3e7b029 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
name: "Publish org-roam to GitHub Pages"

runs:
  using: "composite"
  steps:
    # 呼び出されたworkflowのリポジトリをチェックアウトし、ファイル一覧を出力する
    - name: "Checkout"
      uses: actions/checkout@v4
      with:
        repository: ${{ github.repository }}
        path: "repo"
    - name: "List files"
      run: |
        cd repo
        find . -type f
      shell: bash