From fa6f69f5b2c9d6c952d649935124c8535cd71fac Mon Sep 17 00:00:00 2001 From: Jonathan Tamsut Date: Tue, 23 Apr 2024 14:51:54 -0700 Subject: [PATCH] Create create-artifact.yml --- .github/workflows/create-artifact.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/create-artifact.yml diff --git a/.github/workflows/create-artifact.yml b/.github/workflows/create-artifact.yml new file mode 100644 index 0000000..9d36d7e --- /dev/null +++ b/.github/workflows/create-artifact.yml @@ -0,0 +1,17 @@ +name: Create Artifact + +on: workflow_dispatch + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - name: Create artifact + - run: echo "Hello, World!" > hello.txt + + - name: Archive artifacts + uses: actions/upload-artifact@v4 + with: + name: my-artifact + path: ./hello.txt