We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b2cf39f commit 347baa6Copy full SHA for 347baa6
.github/workflows/publish.yml
@@ -8,4 +8,5 @@ jobs:
8
publish:
9
runs-on: ubuntu-latest
10
steps:
11
- - run: curl https://proxy.golang.org/github.com/ninedraft/gemax/@v/${{ github.ref }}.info
+ - uses: actions/checkout@v2
12
+ - run: ./scripts/publish.sh ${{ github.ref }}
scripts/publish.sh
@@ -0,0 +1,4 @@
1
+#!/usr/bin/env bash
2
+
3
+tag=${$1%%"refs/tags/"}
4
+curl https://proxy.golang.org/github.com/ninedraft/gemax/@v/$tag.info
0 commit comments