Insecure time computation #11
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This workflow is used to build docker image for ppid-retrieval-tool | |
name: Docker Image CI | |
on: | |
push: | |
branches: ["master"] | |
paths: | |
- "intel-sgx/ppid-retrieval-tool/**" | |
- ".github/workflows/**" | |
pull_request: | |
branches: ["master"] | |
paths: | |
- "intel-sgx/ppid-retrieval-tool/**" | |
- ".github/workflows/**" | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Build the Docker image | |
run: | | |
cd intel-sgx/ppid-retrieval-tool | |
docker build -t ppid-retrieval-tool:$(date +%s) . | |