Skip to content

Create and Upload Artifact #3

Create and Upload Artifact

Create and Upload Artifact #3

Workflow file for this run

name: Create and Upload Artifact
on:
workflow_dispatch:
push:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Create text file
run: echo "Hello, World!" > output.txt
- name: Upload artifact
uses: actions/upload-artifact@v2
with:
name: output-file
path: output.txt