Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 2 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -293,18 +293,15 @@ jobs:
# this workflow.
permissions_monitoring_config: ${{ vars.ACTIONS_PERMISSIONS_CONFIG }}
- uses: actions/checkout@v6
- name: Get the short SHA for the commit being used
run: |
echo "GH_SHORT_SHA=${GITHUB_SHA::7}" >> $GITHUB_ENV
- name: Build the base Lambda Docker image
run: |
docker compose build build_deployment_package
- name: Generate the Lambda deployment package
run: docker compose up build_deployment_package
- name: Upload the generated Lambda deployment package as an artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: ${{ github.event.repository.name }}-${{ env.GH_SHORT_SHA }}
archive: false
path: ${{ env.DEFAULT_ARTIFACT_NAME }}
- name: Setup tmate debug session
uses: mxschmitt/action-tmate@v3
Expand Down
Loading