Skip to content

Instantly share code, notes, and snippets.

View jbesw's full-sized avatar

James Beswick jbesw

View GitHub Profile
@jbesw
jbesw / .gitlab-ci.yml
Last active November 30, 2021 00:20 — forked from m8r1x/.gitlab-ci.yml
Basic skeleton of Gitlab CI integration with AWS Lambda for auto deployments.
image: docker:latest
variables:
- enableCostAnalysis: "true"
before_script:
- apt-get update -y # Updating the Ubuntu Docker instance.
- python -V # Print out python version for debugging.
- apt install -y zip jq
- pip install awscli --upgrade --user