From 2ed126b11fdff710189a40adbee94daa79d59901 Mon Sep 17 00:00:00 2001 From: Dan Hardej Date: Wed, 24 Jan 2024 14:17:36 +0800 Subject: [PATCH] Create artefact_test.yml --- .github/workflows/artefact_test.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/artefact_test.yml diff --git a/.github/workflows/artefact_test.yml b/.github/workflows/artefact_test.yml new file mode 100644 index 0000000..def18e5 --- /dev/null +++ b/.github/workflows/artefact_test.yml @@ -0,0 +1,20 @@ +name: Create Test Artifact + +on: workflow_dispatch + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - name: Checkout code + uses: actions/checkout@v2 + + - name: Create a file + run: echo "Hello, World!" > test.txt + + - name: Upload artifact + uses: actions/upload-artifact@v2 + with: + name: test-artifact + path: test.txt \ No newline at end of file