-
Notifications
You must be signed in to change notification settings - Fork 3
/
Kod4._yaml
81 lines (71 loc) · 2.07 KB
/
Kod4._yaml
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
name: Kód4 (python-streamlit-webapp) - Épít és feltölt
# Kód4 példához - Épít és feltölt Docker image-t Azure Container Registry-be
on:
push:
branches:
- main
paths:
- "Kod4/**"
pull_request:
branches:
- "*"
paths:
- "Kod4/**"
env:
APP_NAME: python-streamlit-webapp # Alkalmazás képfájl neve
jobs:
test:
name: Tesztelés (CI)
if: github.event_name == 'pull_request'
runs-on: ubuntu-latest
steps:
- name: Kód letöltése
uses: actions/checkout@v4
- name: Python beállítása
uses: actions/setup-python@v4
with:
python-version: '3.11'
architecture: 'x64'
- name: Python verzió megjelenítése
run: python -c "import sys; print(sys.version)"
- name: Python csomagok telepítése
run: |
cd Kod4
pip install -r requirements.txt
- name: Alkalmazás tesztelés
run: |
cd Kod4
pytest
deploy:
name: Építés (CI)
if: github.event_name != 'pull_request'
runs-on: ubuntu-latest
steps:
- name: Kód letöltése
uses: actions/checkout@v4
- name: ACR bejelentkezés
uses: docker/login-action@v3
with:
registry: ${{ secrets.ACR_LOGIN_SERVER }}
username: ${{ secrets.ACR_USERNAME }}
password: ${{ secrets.ACR_PASSWORD }}
- name: Extract Docker metadata
id: meta
uses: docker/metadata-action@v5
with:
images: ${{ secrets.ACR_LOGIN_SERVER }}/${{ env.APP_NAME }}
tags: |
type=sha
type=raw,value=latest
type=semver,pattern={{version}},event=tag
- name: Épít és feltölt
uses: docker/build-push-action@v5
with:
context: ./Kod4
file: ./Kod4/Dockerfile
push: true
platforms: linux/amd64
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
- name: ACR kijelentkezés
run: docker logout ${{ secrets.ACR_LOGIN_SERVER }}