diff --git a/.forgejo/workflows/commit.yaml b/.forgejo/workflows/commit.yaml index 6ee715a1..f7cf0cda 100644 --- a/.forgejo/workflows/commit.yaml +++ b/.forgejo/workflows/commit.yaml @@ -16,7 +16,7 @@ jobs: - name: Print environment info run: dotnet --info - name: Run unit tests - run: make test + run: make test VERBOSE=true - name: Build docker image shell: bash run: | diff --git a/.forgejo/workflows/release-artifacts.yaml b/.forgejo/workflows/release-artifacts.yaml index a109e1f7..80355c3c 100644 --- a/.forgejo/workflows/release-artifacts.yaml +++ b/.forgejo/workflows/release-artifacts.yaml @@ -16,7 +16,7 @@ jobs: - name: Print environment info run: dotnet --info - name: Build release artifacts - run: make ARCHIVE_BASENAME=${{ github.event.repository.name }} ARCHIVE_VERSION=${{ github.ref_name }} release-artifacts + run: make release-artifacts ARCHIVE_BASENAME=${{ github.event.repository.name }} ARCHIVE_VERSION=${{ github.ref_name }} VERBOSE=true - name: Upload artifacts uses: actions/release-action@main with: diff --git a/.forgejo/workflows/test-build.yaml b/.forgejo/workflows/test-build.yaml index 553cb661..4e250279 100644 --- a/.forgejo/workflows/test-build.yaml +++ b/.forgejo/workflows/test-build.yaml @@ -19,4 +19,4 @@ jobs: - name: Print environment info run: dotnet --info - name: Run unit tests - run: make test + run: make test VERBOSE=true