Skip to content

workflow tests

workflow tests #1

Workflow file for this run

name: Build and Store Artifact
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Build project
run: |
mkdir output
echo "Hello World!" > output/result.txt
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: build-output
path: output/