Skip to content

Commit

Permalink
Create main.yml
Browse files Browse the repository at this point in the history
Signed-off-by: cameronvincent01 <[email protected]>
  • Loading branch information
cameronvincent01 authored Feb 27, 2024
1 parent de2b45c commit 55076eb
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Create, Scan and Publish KAITO image
on:
pull_request:
branches:
- main
- release-**

jobs:
print:
runs-on: ubuntu-20.04
steps:
- name: Save registry and tag as an artifact for other workflows that run on workflow_run to download them
run: |
mkdir -p /tmp/artifacts
echo ${{ github.sha }} >> /tmp/artifacts/tag.txt
cat /tmp/artifacts/tag.txt
- uses: actions/upload-artifact@v4
with:
name: artifacts
path: /tmp/artifacts

0 comments on commit 55076eb

Please sign in to comment.