this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Generate tar.gz file too

+6 -3
+4 -2
.github/workflows/prodtag.yml
··· 20 20 with: 21 21 node-version: 18 22 22 - run: npm ci && npm run build 23 - - run: cd dist && zip -r ../phanpy-dist.zip . && cd .. 23 + - run: cd dist && zip -r ../phanpy-dist.zip . && tar -czf ../phanpy-dist.tar.gz . && cd .. 24 24 - id: tag_name 25 25 run: echo ::set-output name=tag_name::$(date +%Y.%m.%d).$(git rev-parse --short HEAD) 26 26 - uses: softprops/action-gh-release@v1 27 27 with: 28 28 tag_name: ${{ steps.tag_name.outputs.tag_name }} 29 29 generate_release_notes: true 30 - files: phanpy-dist.zip 30 + files: | 31 + phanpy-dist.zip 32 + phanpy-dist.tar.gz
+2 -1
.gitignore
··· 26 26 # Custom 27 27 .env.dev 28 28 src/data/instances-full.json 29 - phanpy-dist.zip 29 + phanpy-dist.zip 30 + phanpy-dist.tar.gz