Compare commits

..

1 Commits

+3 -3
View File
@@ -49,7 +49,7 @@ jobs:
-o dist/${{ env.APP_NAME }}-${{ matrix.os }}-${{ matrix.arch }}${{ matrix.suffix }} . -o dist/${{ env.APP_NAME }}-${{ matrix.os }}-${{ matrix.arch }}${{ matrix.suffix }} .
- name: Upload artifacts - name: Upload artifacts
uses: actions/upload-artifact@v3 uses: actions/upload-artifact@v4
with: with:
name: binaries-${{ matrix.os }}-${{ matrix.arch }} name: binaries-${{ matrix.os }}-${{ matrix.arch }}
path: dist/* path: dist/*
@@ -64,13 +64,13 @@ jobs:
uses: actions/checkout@v4 uses: actions/checkout@v4
- name: Download all artifacts - name: Download all artifacts
uses: actions/download-artifact@v3 uses: actions/download-artifact@v4
with: with:
path: dist path: dist
merge-multiple: true merge-multiple: true
- name: Create Release - name: Create Release
uses: https://github.com/softprops/action-gh-release@v2 uses: https://github.com/actions/softprops/action-gh-release@v2
with: with:
files: dist/* files: dist/*
tag_name: ${{ github.ref_name }} tag_name: ${{ github.ref_name }}