From: Bastien Wirtz Date: Sun, 31 May 2020 07:00:31 +0000 (-0700) Subject: Fix missing directory in artifact creation. X-Git-Tag: 120425999 X-Git-Url: https://git.immae.eu/?p=github%2Fbastienwirtz%2Fhomer.git;a=commitdiff_plain;h=c712d7c780a4e8d1ef2b67dc56b42ad979c36925 Fix missing directory in artifact creation. --- diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 792fe59..fa346b3 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -15,7 +15,9 @@ jobs: run: | yarn install yarn build - zip --junk-paths homer dist/* + - name: Create artifact + working-directory: "dist" + run: zip -r ../homer.zip ./* - name: Create Release id: create_release uses: actions/create-release@v1