fix: missing the right phase of trpc gen-code #39
Workflow file for this run
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: Build | |
on: | |
- pull_request | |
jobs: | |
Build: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Maven Package | |
run: mvn package | |
- name: Image | |
run: make build-image | |
- name: Run e2e | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
PULL_REQUEST: ${{ github.event.number }} | |
run: | | |
sudo curl -L https://github.com/docker/compose/releases/download/v2.23.0/docker-compose-linux-x86_64 -o /usr/local/bin/docker-compose | |
sudo chmod u+x /usr/local/bin/docker-compose | |
export OWNER=$(echo ${{ github.repository_owner }} | tr '[:upper:]' '[:lower:]') | |
make test-e2e |