Skip to content

Commit 6eca2d4

Browse files
committed
add github workflow
1 parent e64d68c commit 6eca2d4

File tree

3 files changed

+78
-2
lines changed

3 files changed

+78
-2
lines changed

README.md

+8-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
1-
## aws-lambda-python-seed.g8 [WIP]
1+
## aws-lambda-python-seed.g8
22

3-
This is a [Giter8][g8] template for python aws lambdas.
3+
This is a [Giter8][g8] template for python aws lambdas.
4+
5+
Whats include
6+
* Hello World Python Lambda
7+
* Hello World Test (PyTest)
8+
* Github Workflow to generate deployable lambda
9+
* Custom make tasks for testing packaging, releasing and deployment
410

511
```
612
sbt new mideo/aws-lambda-python-seed.g8
+57
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
name: release
2+
on:
3+
push:
4+
tags:
5+
- '*'
6+
pull_request:
7+
jobs:
8+
build_release:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- uses: actions/checkout@v2
12+
- uses: actions/setup-python@v2
13+
with:
14+
python-version: '3.8'
15+
- name: install requirements
16+
run: mkdir target && pip install -r requirements.txt -t target
17+
- name: package
18+
run: make bundle LATEST_TAG=\${{ github.ref_name }}
19+
- name: list artifacts
20+
run: ls -al artifacts
21+
- name: release
22+
uses: actions/create-release@v1
23+
id: create_release
24+
with:
25+
draft: false
26+
prerelease: false
27+
release_name: $name$-\${{ github.ref_name }}
28+
tag_name: \${{ github.ref }}
29+
env:
30+
GITHUB_TOKEN: \${{ github.token }}
31+
- name: upload artifact
32+
uses: actions/upload-release-asset@v1
33+
env:
34+
GITHUB_TOKEN: \${{ github.token }}
35+
with:
36+
upload_url: \${{ steps.create_release.outputs.upload_url }}
37+
asset_path: artifacts/$name$-\${{ github.ref_name }}.zip
38+
asset_name: $name$-\${{ github.ref_name }}.zip
39+
asset_content_type: application/gzip
40+
- name: upload artifact digest
41+
uses: actions/upload-release-asset@v1
42+
env:
43+
GITHUB_TOKEN: \${{ github.token }}
44+
with:
45+
upload_url: \${{ steps.create_release.outputs.upload_url }}
46+
asset_path: artifacts/$name$-\${{ github.ref_name }}.zip.base64sha256
47+
asset_name: $name$-\${{ github.ref_name }}.zip.base64sha256
48+
asset_content_type: application/gzip
49+
- name: upload artifact version text file
50+
uses: actions/upload-release-asset@v1
51+
env:
52+
GITHUB_TOKEN: \${{ github.token }}
53+
with:
54+
upload_url: \${{ steps.create_release.outputs.upload_url }}
55+
asset_path: artifacts/latest.version
56+
asset_name: latest.version
57+
asset_content_type: application/text

src/main/g8/Makefile

+13
Original file line numberDiff line numberDiff line change
@@ -98,6 +98,19 @@ push-latest-release-tag:
9898
@git tag -a \$(NEXT_VERSION) -m "Releasing \$(NEXT_VERSION) "
9999
@git push origin --tags
100100

101+
bundle:
102+
@echo " "
103+
@echo "bundling artefact"
104+
@mkdir -p \$(TARGET_DIR)
105+
@mkdir -p \$(ARTIFACT_DIR)
106+
@printf \$(LATEST_TAG) > $(ARTIFACT_DIR)/latest.version
107+
@cp -r handler.py \$(TARGET_DIR)
108+
@cp -r logging.conf \$(TARGET_DIR)
109+
@cd \$(TARGET_DIR) && zip -q -r ../\$(ARTIFACT_DIR)/\$(CURRENT_ARTIFACT_VERSION) .
110+
@openssl dgst -sha256 -binary \$(ARTIFACT_DIR)/\$(CURRENT_ARTIFACT_VERSION) | openssl enc -base64 > \$(ARTIFACT_DIR)/\$(CURRENT_ARTIFACT_VERSION).base64sha256
111+
@ls \$(ARTIFACT_DIR)
112+
113+
101114
push-s3: s3-bucket-info
102115
@echo " "
103116
@echo "Uploading artifact to s3 "\$(S3_BUCKET)

0 commit comments

Comments
 (0)