Skip to content

Commit

Permalink
WIP-Feat: added lambda dependency maker
Browse files Browse the repository at this point in the history
Signed-off-by: Trey <[email protected]>
  • Loading branch information
TreyWW committed May 31, 2024
1 parent 6ecd63e commit eb584b1
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/management_bot_lambda.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Build and Upload Python Package

on: [ push, workflow_dispatch ]

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v2

- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.12'

- name: Install dependencies and create .zip
run: |
mkdir -p build/python
pip install --platform manylinux2014_x86_64 --implementation cp --only-binary=:all: --upgrade --target=build/python cryptography pygithub
zip -r build/python.zip build/python
- name: Upload artifact
uses: actions/upload-artifact@v2
with:
name: python-package
path: build/python.zip

0 comments on commit eb584b1

Please sign in to comment.