Skip to content

Commit

Permalink
Fix CI build after upload-artifact change excluding files
Browse files Browse the repository at this point in the history
  • Loading branch information
TokisanGames committed Sep 29, 2024
1 parent e23c449 commit fca91a7
Show file tree
Hide file tree
Showing 7 changed files with 30 additions and 22 deletions.
1 change: 1 addition & 0 deletions .github/workflows/android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ jobs:
uses: actions/upload-artifact@v4
with:
name: t3d-${{ matrix.platform }}-${{ matrix.arch }}-${{ matrix.target }}
include-hidden-files: true
path: |
${{ github.workspace }}/project/
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -102,9 +102,12 @@ jobs:
- name: Upload Package
uses: actions/upload-artifact@v4
with:
include-hidden-files: true
name: t3d-${{ matrix.platform }}-${{ matrix.arch }}-${{ matrix.target }}
path: |
${{ github.workspace }}/project/
${{ github.workspace }}/project/addons/terrain_3d/brushes/.gdignore
merge:
runs-on: ubuntu-latest
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/ios.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ jobs:
uses: actions/upload-artifact@v4
with:
name: t3d-${{ matrix.platform }}-${{ matrix.arch }}-${{ matrix.target }}
include-hidden-files: true
path: |
${{ github.workspace }}/project/
Expand Down
22 changes: 12 additions & 10 deletions .github/workflows/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,17 +47,19 @@ jobs:
- name: Upload Package
uses: actions/upload-artifact@v4
with:
include-hidden-files: true
name: t3d-${{ matrix.platform }}-${{ matrix.arch }}-${{ matrix.target }}
path: |
${{ github.workspace }}/project/
${{ github.workspace }}/project/addons/terrain_3d/brushes/.gdignore
merge:
runs-on: ubuntu-latest
needs: build
steps:
- name: Merge Artifacts
uses: actions/upload-artifact/merge@v4
with:
name: ${{ github.event.repository.name }}
pattern: t3d-*
delete-merged: true
# merge:
# runs-on: ubuntu-latest
# needs: build
# steps:
# - name: Merge Artifacts
# uses: actions/upload-artifact/merge@v4
# with:
# name: ${{ github.event.repository.name }}
# pattern: t3d-*
# delete-merged: true
1 change: 1 addition & 0 deletions .github/workflows/macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ jobs:
uses: actions/upload-artifact@v4
with:
name: t3d-${{ matrix.platform }}-${{ matrix.arch }}-${{ matrix.target }}
include-hidden-files: true
path: |
${{ github.workspace }}/project/
Expand Down
22 changes: 11 additions & 11 deletions .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,19 +48,19 @@ jobs:
cp '${{ github.workspace }}/README.md' '${{ github.workspace }}/LICENSE.txt' ${{ github.workspace }}/project/addons/terrain_3d/
- name: Upload Package
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v4.3.6
with:
name: t3d-${{ matrix.platform }}-${{ matrix.arch }}-${{ matrix.target }}
path: |
${{ github.workspace }}/project/
merge:
runs-on: ubuntu-latest
needs: build
steps:
- name: Merge Artifacts
uses: actions/upload-artifact/merge@v4
with:
name: ${{ github.event.repository.name }}
pattern: t3d-*
delete-merged: true
# merge:
# runs-on: ubuntu-latest
# needs: build
# steps:
# - name: Merge Artifacts
# uses: actions/upload-artifact/merge@v4
# with:
# name: ${{ github.event.repository.name }}
# pattern: t3d-*
# delete-merged: true
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ export_presets.cfg
.scons-cache/
*.os
*.obj
*.o

# SConstruct
.sconf_temp
Expand All @@ -35,4 +36,3 @@ export_presets.cfg
# Editors
.vscode/
.vs/
project/addons/explore-editor-theme/

0 comments on commit fca91a7

Please sign in to comment.