diff options
| author | 2024-04-23 11:32:52 +0100 | |
|---|---|---|
| committer | 2024-04-23 16:08:55 +0100 | |
| commit | d9031529e120dca9a5aed0a150f3bb960153d4a2 (patch) | |
| tree | 86a191cd5bda27730c2cbf1f40450dec9be6ac5e | |
| parent | ce25dbd06510175857e892f88958ea3e55379f1e (diff) | |
| download | sentrum-d9031529e120dca9a5aed0a150f3bb960153d4a2.tar.gz sentrum-d9031529e120dca9a5aed0a150f3bb960153d4a2.tar.bz2 sentrum-d9031529e120dca9a5aed0a150f3bb960153d4a2.zip | |
Include aux files inside release tarballs
| -rw-r--r-- | .github/workflows/release.yml | 9 | 
1 files changed, 3 insertions, 6 deletions
| diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index d86fd5d..62c1caa 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -33,9 +33,9 @@ jobs:          cd target/release          if [[ "${{ matrix.os }}" == "windows-latest" ]]          then -          7z a ../../${{ matrix.name }} ${{ matrix.bin }} +          7z a ../../${{ matrix.name }} ${{ matrix.bin }} sentrum.sample.toml contrib/sentrum.service          else -          tar czvf ../../${{ matrix.name }} ${{ matrix.bin }} +          tar czvf ../../${{ matrix.name }} ${{ matrix.bin }} sentrum.sample.toml contrib/sentrum.service          fi          cd -      - name: Publish @@ -43,9 +43,6 @@ jobs:        if: startsWith(github.ref, 'refs/tags/')        with:            draft: true -          files: | -            sentrum-* -            sentrum.sample.toml -            contrib/sentrum.service +          files: sentrum-*        env:          GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | 
