-
Notifications
You must be signed in to change notification settings - Fork 2
50 lines (40 loc) · 1.16 KB
/
ci.yml
File metadata and controls
50 lines (40 loc) · 1.16 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
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"
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