🖥

Github Actions で隠しディレクトリ・ファイルがアップロードできない ( actions/upload-artifact@v4

2024/11/16に公開

問題

.up のような隠しディレクトリをアップロードしようとすると、エラーが起きてしまう

エラー例

Error: No files were found with the provided path: .up/. No artifacts will be uploaded.

解決

upload-artifact@v4 では隠しファイル、ディレクトリをアップロードする時はオプションを指定しなければいけなくなったようだ

jobs:
  setup:
    name: 'Setup'
    runs-on: ubuntu-latest
    steps:
      - name: Checkout
        uses: actions/checkout@v4
      - name: Upload Test
        uses: actions/upload-artifact@v4
        with:
          name: upload-test
          if-no-files-found: error
+         include-hidden-files: true
          path: .up

公式

https://github.com/actions/upload-artifact/blob/main/docs/MIGRATION.md

https://github.com/actions/upload-artifact?tab=readme-ov-file#v4---whats-new

公開日時

2024-09-04

https://qiita.com/YumaInaura/items/237b7cffa95755a05c8d

Discussion