diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 73ec943..003ffa2 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -32,11 +32,11 @@ jobs: with: infile: coverage.out outfile: coverage.lcov - if: "matrix.os == 'ubuntu-latest'" + if: ${{ matrix.os == 'ubuntu-latest' }} - name: Send coverage to coveralls uses: coverallsapp/github-action@master with: github-token: ${{ secrets.github_token }} path-to-lcov: coverage.lcov - if: "matrix.os == 'ubuntu-latest'" + if: ${{ matrix.os == 'ubuntu-latest' }} diff --git a/.github/workflows/create_pull_request.yml b/.github/workflows/create_pull_request.yml index 11b5808..775c0a6 100644 --- a/.github/workflows/create_pull_request.yml +++ b/.github/workflows/create_pull_request.yml @@ -32,6 +32,7 @@ jobs: env: GH_TOKEN: ${{ github.token }} run: | + echo "count: ${{ steps.check_pr.outputs.count }}" gh pr create \ -B main \ -t 'Release v${{ steps.check_pr.outputs.tag }} ${{ steps.check_pr.outputs.message }}' \