diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 1b57eba..c374373 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -35,10 +35,20 @@ jobs: - id: commit uses: prompt/actions-commit-hash@v3 - run: tar cvzf inspircd.${{matrix.version}}-${{steps.commit.outputs.short}}.${{matrix.os}}.tar.gz run/ - - uses: "marvinpinto/action-automatic-releases@latest" + - uses: actions/upload-artifact@v4 with: - repo_token: "${{ secrets.GITHUB_TOKEN }}" - automatic_release_tag: "latest" - prerelease: true - title: "Development Build" - files: inspircd*.tar.gz + # Name of the artifact to upload. + # Optional. Default is 'artifact' + name: inspircd.${{matrix.version}}-${{steps.commit.outputs.short}}.${{matrix.os}}.tar.gz + + # A file, directory or wildcard pattern that describes what to upload + # Required. + path: run/ + + # The desired behavior if no files are found using the provided path. + # Available Options: + # warn: Output a warning but do not fail the action + # error: Fail the action with an error message + # ignore: Do not output any warnings or errors, the action does not fail + # Optional. Default is 'warn' + if-no-files-found: error