Skip to content

Commit

Permalink
comment revisions
Browse files Browse the repository at this point in the history
  • Loading branch information
seshubaws committed May 9, 2024
1 parent 4836386 commit f1f9b20
Showing 1 changed file with 10 additions and 9 deletions.
19 changes: 10 additions & 9 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,30 +7,31 @@ on:
description: "Version to use for the release."
required: true
default: "X.Y.Z"
developmentVersion:
description: "Version to use for further development"
required: true
default: "X.Y.Z-RIE"
# developmentVersion: #this could be the release notes??
# description: "Version to use for further development"
# required: true
# default: "X.Y.Z-RIE"
jobs:
Release:
environment: Release
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Configure Git User # may be removed after https://github.com/actions/checkout/issues/13 is resolved
run: |
git config user.email "${{ github.actor }}@users.noreply.github.com"
git config user.name "${{ github.actor }}"
with:
ref: 'main'
- name: Set up python
uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Build
run: make compile-with-docker-all
- name: Run Tests
run: | # have to set up python?
make tests-with-docker
- name: Release
uses: softprops/action-gh-release@v2
with:
tag_name: ${{ github.event.inputs.releaseVersion }}
tag_name: v${{ github.event.inputs.releaseVersion }}
files: |
bin/aws-lambda-rie
bin/aws-lambda-rie-arm64
Expand Down

0 comments on commit f1f9b20

Please sign in to comment.