this repo has no description
0
fork

Configure Feed

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

Ok, hopefully fix messed up tag_name

Seems working but need better tag name

+5 -3
+5 -3
.github/workflows/prodtag.yml
··· 14 14 - uses: actions/checkout@v4 15 15 with: 16 16 ref: production 17 - - run: git tag "`date +%Y.%m.%d`.`git rev-parse --short HEAD`" $(git rev-parse HEAD) 18 - - run: git push --tags 17 + # - run: git tag "`date +%Y.%m.%d`.`git rev-parse --short HEAD`" $(git rev-parse HEAD) 18 + # - run: git push --tags 19 19 - uses: actions/setup-node@v3 20 20 with: 21 21 node-version: 18 22 22 - run: npm ci && npm run build 23 23 - run: cd dist && zip -r ../phanpy-dist.zip . && cd .. 24 + - id: tag_name 25 + run: echo ::set-output name=tag_name::$(date +%Y.%m.%d).$(git rev-parse --short HEAD) 24 26 - uses: softprops/action-gh-release@v1 25 27 with: 26 - tag_name: ${{ github.ref_name }} 28 + tag_name: ${{ steps.tag_name.outputs.tag_name }} 27 29 generate_release_notes: true 28 30 files: phanpy-dist.zip