Skip to content

Commit

Permalink
iter
Browse files Browse the repository at this point in the history
  • Loading branch information
ronpal committed Oct 17, 2023
1 parent fb54a6c commit ec3dadf
Showing 1 changed file with 23 additions and 25 deletions.
48 changes: 23 additions & 25 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -1,28 +1,26 @@
---
name: Deploy modules

on:
push:
branches:
- ghactions

push:
branches:
- ghactions
jobs:

build-modules:
runs-on: ubuntu-latest
name: Loadmaster
steps:
- uses: actions/checkout@v4

- uses: actions/setup-python@v4
with:
python-version: 3.9
- uses: snok/install-poetry@v1
with:
version: 1.6.1
virtualenvs-create: false
- name: Install dependencies
run: poetry install
- name: Build the package
run: |
poetry run python build.py
build-modules:
runs-on: ubuntu-latest
name: Loadmaster
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: 3.9
- uses: snok/install-poetry@v1
with:
version: 1.6.1
virtualenvs-create: false
- name: Install dependencies
run: poetry install
- name: "Build the package"
run: |
poetry run python build.py --package
- name: "Deploy the package"
run: |
poetry run python deploy.py --package

0 comments on commit ec3dadf

Please sign in to comment.