Skip to content

Commit 09817d2

Browse files
committed
Small README & CI updates.
1 parent 9fa37fd commit 09817d2

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/release.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
- uses: actions/checkout@v2
4545
- run: echo ::set-env name=RELEASE_VERSION::${GITHUB_REF#refs/*/}
4646
shell: bash
47-
- run: echo "::set-env name=zip_name::trunk-${{ env.RELEASE_VERSION }}-${{ matrix.binName }}.zip"
47+
- run: echo "::set-env name=ZIP_NAME::trunk-${{ env.RELEASE_VERSION }}-${{ matrix.binName }}.zip"
4848
shell: bash
4949
- uses: actions-rs/toolchain@v1
5050
with:
@@ -60,12 +60,12 @@ jobs:
6060
- uses: papeloto/action-zip@v1
6161
with:
6262
files: ${{ matrix.binPath }}
63-
dest: ${zip_name}
63+
dest: ${{ env.ZIP_NAME }}
6464
- uses: actions/upload-release-asset@v1
6565
env:
6666
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
6767
with:
6868
upload_url: ${{ needs.release.outputs.upload_url }}
69-
asset_path: ${zip_name}
70-
asset_name: ${zip_name}
69+
asset_path: ${{ env.ZIP_NAME }}
70+
asset_name: ${{ env.ZIP_NAME }}
7171
asset_content_type: application/zip

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ Trunk environment variables mirror the `Trunk.toml` config schema. All Trunk env
113113
The final configuration layer is the CLI itself. Any arguments / options provided on the CLI will take final precedence over any other config layer.
114114

115115
## contributing
116-
Anyone and everyone is welcome to contribute! Please review [the CONTRIBUTING.md document](./CONTRIBUTING.md) for more details. The best way to get started is to find an open issue, and then start hacking on implementing it. Letting other folks know that you are working on it, and sharing progress is a great approach. Open pull requests early and often, and please use Github's draft pull request feature.
116+
Anyone and everyone is welcome to contribute! Please review the [CONTRIBUTING.md](./CONTRIBUTING.md) document for more details. The best way to get started is to find an open issue, and then start hacking on implementing it. Letting other folks know that you are working on it, and sharing progress is a great approach. Open pull requests early and often, and please use Github's draft pull request feature.
117117

118118
---
119119

0 commit comments

Comments
 (0)