generated from owasp-sbot/OSBot__Repo_Template
-
Notifications
You must be signed in to change notification settings - Fork 0
78 lines (63 loc) · 2.19 KB
/
ci-pipeline__main.yml
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
name : CI Pipeline - MAIN
on:
push:
branches:
- main
env:
DOCKER__CONTEXT : "."
DOCKER__FILE : './deploy/docker/osbot_github_actions__from_pip/Dockerfile'
DOCKER_HUB__USERNAME: ${{ secrets.DOCKERHUB_USERNAME }}
DOCKER_HUB__TOKEN : ${{ secrets.DOCKERHUB_TOKEN }}
GIT__BRANCH : 'main'
PACKAGE_NAME : 'osbot_github_actions'
jobs:
run-unit-tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Poetry - Install Dependencies
uses: owasp-sbot/OSBot-GitHub-Actions/.github/actions/poetry__install@dev
with:
pip_install: '-r requirements-test.txt'
- name: Run Unit Tests (using Poetry)
uses: owasp-sbot/OSBot-GitHub-Actions/.github/actions/poetry__run-unit-tests@dev
increment-tag:
name: Increment Tag - MAIN
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Increment Tag (for MAIN)
uses: owasp-sbot/OSBot-GitHub-Actions/.github/actions/git__increment-tag@dev
with:
release_type : 'major'
needs:
- run-unit-tests
publish-to-pypi:
permissions:
id-token: write
name: "Publish to PYPI"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: publish-to-pypi
uses: owasp-sbot/OSBot-GitHub-Actions/.github/actions/pypi__publish@dev
needs:
- increment-tag
# note: in this publish-to-pypi the actions/checkout@v4 needs this token for private repos (due to the id-token: write permission request)
# - uses: actions/checkout@v4
# with:
# token: ${{ secrets.GIT_HUB__ACCESS_TOKEN }}
# ref: dev
publish-to-docker-hub:
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v4
- name: Git Update Current Branch
uses: owasp-sbot/OSBot-GitHub-Actions/.github/actions/git__update_branch@dev
- name: Set $Version from file
uses: owasp-sbot/OSBot-GitHub-Actions/.github/actions/git__read_version@dev
- name: Deploy to Docker Hub
uses: owasp-sbot/OSBot-GitHub-Actions/.github/actions/docker-hub__publish@dev
needs:
- publish-to-pypi