Skip to content

Commit 1cbeafb

Browse files
authored
Merge pull request #15 from mutablelogic/dev
Updated action
2 parents bf956ca + 8cdeb01 commit 1cbeafb

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/publish.yaml

+6-2
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,17 @@ jobs:
66
var:
77
name: Set variables
88
runs-on: ubuntu-latest
9+
outputs:
10+
tag: ${{ steps.var.outputs.tag }}
911
steps:
12+
- name: Checkout
13+
uses: actions/checkout@v4
14+
with:
15+
fetch-depth: 0
1016
- name: Set variables
1117
id: var
1218
run: |
1319
TAG="$(git describe --tags)" && echo "tag=${TAG#v}" >> $GITHUB_OUTPUT
14-
outputs:
15-
tag: ${{ steps.var.outputs.tag }}
1620
build:
1721
name: Build
1822
needs: var

0 commit comments

Comments
 (0)