Fix env #15
This file contains hidden or 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 and Release | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| env: | |
| CODEBATTLE_AUTH_TOKEN: ${{ secrets.CODEBATTLE_AUTH_TOKEN }} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up Python | |
| uses: actions/setup-python@v4 | |
| with: | |
| python-version: "3.x" | |
| - name: Install dependencies | |
| run: | | |
| python -m pip install --upgrade pip | |
| pip install -r requirements.txt | |
| - name: Build | |
| run: make build | |
| - name: Check secret | |
| if: github.ref == 'refs/heads/main' | |
| run: | | |
| if [ -z "$CODEBATTLE_AUTH_TOKEN" ]; then | |
| echo "Secret is empty!" | |
| else | |
| echo "Secret is set (length: ${#CODEBATTLE_AUTH_TOKEN})" | |
| fi | |
| - name: Create .env file | |
| if: github.ref == 'refs/heads/main' | |
| run: echo "CODEBATTLE_AUTH_TOKEN=${{ secrets.CODEBATTLE_AUTH_TOKEN }}" > .env | |
| - name: Push tasks to public | |
| if: github.ref == 'refs/heads/main' | |
| run: make push-public | |
| - name: Push task packs to public | |
| if: github.ref == 'refs/heads/main' | |
| run: make push-packs-public |