Skip to content

Commit

Permalink
Upload hidden files for staging (#87)
Browse files Browse the repository at this point in the history
Motivation:

Due a change in the upload action of github we now need to explicit enable the uplaod of hidden files (dot-files). Not doing this breaks our staging workflow which depends on some of these files.

See actions/upload-artifact#602

Modifications:

Explicit set include-hidden-files: true

Result:

Staging works again
  • Loading branch information
normanmaurer authored Sep 3, 2024
1 parent af43fd1 commit 8e3a674
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/workflows/ci-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,7 @@ jobs:
name: ${{ matrix.setup }}-local-staging
path: ~/local-staging
if-no-files-found: error
include-hidden-files: true

deploy-staged-snapshots:
runs-on: ubuntu-latest
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/ci-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,7 @@ jobs:
with:
name: prepare-release-workspace
path: ${{ github.workspace }}/**
include-hidden-files: true

stage-release-linux:
runs-on: ubuntu-latest
Expand Down Expand Up @@ -151,6 +152,7 @@ jobs:
name: ${{ matrix.setup }}-local-staging
path: ~/local-staging
if-no-files-found: error
include-hidden-files: true

- name: Rollback release on failure
working-directory: ./prepare-release-workspace/
Expand Down

0 comments on commit 8e3a674

Please sign in to comment.