Skip to content

Commit 6b54dae

Browse files
committed
Adding all-contributors
1 parent c333ac5 commit 6b54dae

File tree

2 files changed

+20
-1
lines changed

2 files changed

+20
-1
lines changed

.github/workflows/publish.yaml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,13 @@ jobs:
1818
needs: build
1919
name: Publish
2020
runs-on: windows-2022
21+
env:
22+
VERSION: ${{ needs.build.outputs.version }}
2123

2224
steps:
25+
- name: Version from build
26+
run: echo ${{ env.VERSION }}
27+
2328
- name: Download Package artifact
2429
uses: actions/download-artifact@v3
2530
with:
@@ -35,7 +40,7 @@ jobs:
3540
uses: softprops/action-gh-release@v1
3641
with:
3742
body: Release ${{ needs.build.outputs.version }}
38-
tag_name: ${{ needs.build.outputs.version }}
43+
tag_name: ${{ env.VERSION }}
3944
generate_release_notes: true
4045
files: |
4146
**/*.vsix

README.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
[![All Contributors](https://img.shields.io/github/all-contributors/timheuer/GitHubActionsVS?color=ee8449&style=flat-square)](#contributors)
2+
13
# GitHub Actions for Visual Studio
24
The GitHub Actions extension lets you manage your workflows, view the workflow run history, and edit GitHub secrets.
35

@@ -14,6 +16,18 @@ TBD
1416
### Edit GitHub secrets
1517
TBD
1618

19+
## Contributors
20+
21+
<!-- ALL-CONTRIBUTORS-LIST:START - Do not remove or modify this section -->
22+
<!-- prettier-ignore-start -->
23+
<!-- markdownlint-disable -->
24+
25+
<!-- markdownlint-restore -->
26+
<!-- prettier-ignore-end -->
27+
28+
<!-- ALL-CONTRIBUTORS-LIST:END -->
29+
30+
1731
## Requirements
1832
Visual Studio 2022 17.6 or later is required to use this extension. Additionally since GitHub Actions is obviously a feature of GitHub, you will need to be attached to an active GitHub.com repository.
1933

0 commit comments

Comments
 (0)