Fix obtaining logs for finished queries (mostly in case of exception) #204
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: pre-release | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
build: | |
uses: ./.github/workflows/build.yml | |
publish-pre-release: | |
name: Publish Pre Release | |
runs-on: ubuntu-22.04 | |
permissions: | |
contents: write | |
needs: | |
- build | |
steps: | |
- name: Download artifacts | |
uses: actions/download-artifact@v3 | |
- uses: "marvinpinto/action-automatic-releases@latest" | |
with: | |
repo_token: "${{ secrets.GITHUB_TOKEN }}" | |
prerelease: true | |
automatic_release_tag: "latest" | |
title: "Development Build" | |
files: | | |
macos-packages-x86_64/chdig-macos-x86_64.gz | |
macos-packages-arm64/chdig-macos-arm64.gz | |
windows-packages/chdig-windows.exe.zip | |
linux-packages/chdig | |
linux-packages/*.deb | |
linux-packages/*.rpm | |
linux-packages/*.tar.* |