Skip to content

Fix env

Fix env #15

Workflow file for this run

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