From 32fa6436b3fbbbc95358b1bf01bf90d4761337b1 Mon Sep 17 00:00:00 2001 From: Thomas Cole Date: Thu, 27 Jul 2023 10:18:39 -0400 Subject: [PATCH] Trying something else in build --- .gitea/workflows/build.yml | 24 +++++++++++++++--------- 1 file changed, 15 insertions(+), 9 deletions(-) diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml index 825ef35..c677a6d 100644 --- a/.gitea/workflows/build.yml +++ b/.gitea/workflows/build.yml @@ -16,12 +16,18 @@ jobs: node-version: ${{ matrix.node-version }} - run: npm install - run: npm run build - - name: setup go - uses: https://github.com/actions/setup-go@v4 - with: - go-version: '>=1.20.1' - - name: Create Release - uses: actions/release-action@main - with: - files: |- - build/*.pdf \ No newline at end of file + - name: Upload pdf + uses: actions/upload-artifact@v3 + with: + name: PDF + path: ./build/resume.pdf + + # - name: setup go + # uses: https://github.com/actions/setup-go@v4 + # with: + # go-version: '>=1.20.1' + # - name: Create Release + # uses: actions/release-action@main + # with: + # files: |- + # build/*.pdf \ No newline at end of file