We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d7401f4 commit bf4e7ccCopy full SHA for bf4e7cc
.github/workflows/build.yaml
@@ -14,8 +14,6 @@ jobs:
14
uses: actions/checkout@v3
15
- name: Set up Docker Buildx
16
uses: docker/setup-buildx-action@v2
17
- - name: test
18
- run: echo "hello" && echo "${{github.ref_name}}"
19
- name: get tag
20
id: get_tag
21
run: |
@@ -25,4 +23,14 @@ jobs:
25
23
- name: print
26
24
27
echo "${{ steps.get_tag.outputs.tag }}"
28
- # add getting tag
+ - name: Create release
+ if: ${{ startsWith(github.ref, 'refs/tags/') == true }}
+ uses: softprops/action-gh-release@v1
29
+ with:
30
+ # token: ${{ secrets.GITHUB_TOKEN }}
31
+ # tag_name: ${{ needs.build.outputs.version }}
32
+ # name: ${{ needs.build.outputs.version }}
33
+ # target_commitish: ${{ github.sha }}
34
+ fail_on_unmatched_files: true
35
+ files: |
36
+ *.txt
0 commit comments