Skip to content

Commit

Permalink
chore: update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
zensh committed Nov 25, 2024
1 parent c1012ef commit 86f4344
Show file tree
Hide file tree
Showing 4 changed files with 282 additions and 248 deletions.
7 changes: 6 additions & 1 deletion .github/workflows/build-dockers.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
name: Dockers
on:
workflow_dispatch:
inputs:
build_tag:
description: 'Docker image tag'
required: true
type: string
# push:
# tags:
# - 'v*'
Expand All @@ -16,7 +21,7 @@ jobs:
- name: Build the Docker image
run: |
docker login --username ${{ github.actor }} --password ${{ secrets.GITHUB_TOKEN }} ${{ env.REGISTRY }}
IMAGE_TAG="${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}_enclave_amd64:${{ github.ref_name }}"
IMAGE_TAG="${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}_enclave_amd64:${{ inputs.build_tag }}"
LATEST_TAG="${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}_enclave_amd64:latest"
TAGS="-t ${IMAGE_TAG} -t ${LATEST_TAG}"
docker build -f nitro_enclave/amd64.Dockerfile $TAGS --push .
7 changes: 3 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
name: Release
on:
workflow_dispatch:
# push:
# tags:
# - 'v*'
push:
tags:
- 'v*'
jobs:
test:
runs-on: ubuntu-latest
Expand Down
Loading

0 comments on commit 86f4344

Please sign in to comment.