Skip to content

Update README.md

Update README.md #5

Workflow file for this run

name: Checkout and Upload Artifact
on:
push:
branches:
- main
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Run Build or Generate Artifact
run: |
mkdir -p output
echo "This is a sample artifact file." > output/artifact.txt
- name: Upload Artifact
uses: actions/upload-artifact@v4
with:
name: my-artifact
path: ./