difftreelog
Switch back to github.base_ref.
in: master
1 file changed
.github/workflows/node_build_test.ymldiffbeforeafterboth62 # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it62 # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it63 - uses: actions/checkout@v363 - uses: actions/checkout@v364 with:64 with:65 ref: ${{ github.event.pull_request.head.sha }} #Checking out head commit65 ref: ${{ github.head_ref }} #Checking out head commit666667 - name: Generate ENV related extend file for docker-compose67 - name: Generate ENV related extend file for docker-compose68 uses: cuchi/jinja2-action@v1.2.068 uses: cuchi/jinja2-action@v1.2.069 with:69 with:70 template: .docker/docker-compose.tmp.j270 template: .docker/docker-compose.tmp.j271 output_file: .docker/docker-compose.${{ matrix.network }}.yml71 output_file: .docker/docker-compose.${{ matrix.network }}.yml72 variables: |72 variables: |73 REPO_URL=${{ github.server_url }}/${{ github.repository }}.git73 REPO_URL=${{ github.server_url }}/${{ github.repository }}.git74 RUST_TOOLCHAIN=${{ env.RUST_TOOLCHAIN }}74 RUST_TOOLCHAIN=${{ env.RUST_TOOLCHAIN }}75 POLKA_VERSION=${{ env.POLKA_VERSION }}75 POLKA_VERSION=${{ env.POLKA_VERSION }}76 FEATURE=${{ matrix.features }}76 FEATURE=${{ matrix.features }}77 BRANCH=${{ github.event.pull_request.head.sha }}77 BRANCH=${{ github.base_ref }}787879 - name: Show build configuration79 - name: Show build configuration80 run: cat .docker/docker-compose.${{ matrix.network }}.yml80 run: cat .docker/docker-compose.${{ matrix.network }}.yml