2
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

@actions/upload-artifactで隠しファイルがアップロードされなくなった

Last updated at Posted at 2024-09-04

まとめ

隠しファイルをアップロードさせたいならオプションが必要になりました

sample.yml
      - name: Upload artifact
        uses: actions/upload-artifact@v4
        with:
          name: sample-app
          path: .output
          include-hidden-files: true # 隠しファイル追加オプション

経緯

数日前まで成功していたActionsのワークフローが失敗するようになり、ログを確認したところ.outputディレクトリがアップロードされていないことが判明

Warning: No files were found with the provided path: .output. No artifacts will be uploaded.

actions/upload-artifactのリポジトリを確認したところ、8月末にアップデートがあったようで「デフォルトでは隠しファイルをアップロードしない」仕様に変更されたと説明
https://github.com/actions/upload-artifact/releases/tag/v4.4.0

お知らせの内容に従い、オプションを追加したことで無事アップロードに成功するように、めでたしめでたし

Customers who need to continue to upload these files can use a new option, include-hidden-files

感想

モジュールの更新日も疑っていこう

2
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?