diff --git a/.forgejo/workflows/build-release.yml b/.forgejo/workflows/build-release.yml index 171a8b4..d4e5e70 100644 --- a/.forgejo/workflows/build-release.yml +++ b/.forgejo/workflows/build-release.yml @@ -152,10 +152,12 @@ jobs: run: | mkdir -p artifacts cp target/${{ matrix.target }}/release/zenyx${{ matrix.ext }} artifacts/${{ matrix.binary_name }} - ls -lh artifacts + ls + ls -lah artifacts + ls -lah target/${{ matrix.target }}/release - name: ⬆️ Upload artifact uses: https://code.forgejo.org/forgejo/upload-artifact@v4 with: - name: ${{ matrix.binary_name }} + name: ${{ matrix.binary_name }}.zip path: artifacts/${{ matrix.binary_name }} \ No newline at end of file diff --git a/.forgejo/workflows/test.yml b/.forgejo/workflows/test.yml deleted file mode 100644 index 30cec02..0000000 --- a/.forgejo/workflows/test.yml +++ /dev/null @@ -1,19 +0,0 @@ -name: Build Zenyx ⚡ - -on: - push: - pull_request: - -jobs: - setup: - name: 🔧 Setup Environment - runs-on: ubuntu-latest - steps: - - name: make artifact - run: echo "Test" >> test.txt - - - name: ⬆️ Upload artifact - uses: https://code.forgejo.org/forgejo/upload-artifact@v4 - with: - name: test.txt - path: test.txt \ No newline at end of file