Skip to content

Puzzle

Puzzle #2

Workflow file for this run

name: Puzzle
on:
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: step-security/harden-runner@95691d3d1cfc1f403f673ccbe70465d7c4254108
with:
egress-policy: audit
- uses: actions/checkout@v3
- name: npm install
run: |
cd ./src/exfiltration-demo
npm install
- name: Publish to Registry
uses: elgohr/Publish-Docker-Github-Action@v5
with:
name: ${{ github.repository }}/prod:latest
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
registry: ghcr.io
workdir: ./src/exfiltration-demo