made it also push the yml files

This commit is contained in:
PlOszukiwacz
2024-12-19 20:15:39 +01:00
parent 7983cf0708
commit 09da537481

View File

@@ -43,7 +43,9 @@ jobs:
uses: actions/upload-artifact@v3 uses: actions/upload-artifact@v3
with: with:
name: linux-artifacts name: linux-artifacts
path: dist/*.AppImage path: |
dist/*.AppImage
dist/latest-linux.yml
build-windows: build-windows:
name: Build bsky-desktop (Windows) name: Build bsky-desktop (Windows)
@@ -76,7 +78,9 @@ jobs:
uses: actions/upload-artifact@v3 uses: actions/upload-artifact@v3
with: with:
name: windows-artifacts name: windows-artifacts
path: dist/*.exe path: |
dist/latest-windows.yml
dist/*.exe
build-macos: build-macos:
name: Build bsky-desktop (macOS) name: Build bsky-desktop (macOS)
@@ -109,7 +113,9 @@ jobs:
uses: actions/upload-artifact@v3 uses: actions/upload-artifact@v3
with: with:
name: macos-artifacts name: macos-artifacts
path: dist/*.dmg path: |
dist/latest-macos.yml
dist/*.dmg
release: release:
name: Create Release name: Create Release
@@ -152,5 +158,8 @@ jobs:
name: "bsky-desktop v${{ steps.npmv.outputs.version }}" name: "bsky-desktop v${{ steps.npmv.outputs.version }}"
files: | files: |
dist/linux/*.AppImage dist/linux/*.AppImage
dist/linux/latest-linux.yml
dist/windows/*.exe dist/windows/*.exe
dist/windows/latest-windows.yml
dist/macos/*.dmg dist/macos/*.dmg
dist/macos/latest-macos.yml