Skip to content

Commit 01113a9

Browse files
committed
temporary check values in CI
1 parent f019d29 commit 01113a9

File tree

2 files changed

+29
-0
lines changed

2 files changed

+29
-0
lines changed

.github/workflows/nodejs.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,3 +46,21 @@ jobs:
4646
run: npm test
4747
env:
4848
CI: true
49+
50+
# Temporary for testing
51+
- name: Resolve version
52+
id: vars
53+
run: |
54+
echo "TAG_NAME=$(git describe --tags --abbrev=0)" >> $GITHUB_ENV
55+
56+
- name: Get release notes
57+
run: |
58+
RELEASE_NOTES=$(npm run release-notes --silent)
59+
echo "RELEASE_NOTES<<EOF" >> $GITHUB_ENV
60+
echo "$RELEASE_NOTES" >> $GITHUB_ENV
61+
echo "EOF" >> $GITHUB_ENV
62+
63+
- name: Verify that the values are correct
64+
run: |
65+
echo "The tag name is: ${{ env.TAG_NAME }}"
66+
echo "The release notes are: ${{ env.RELEASE_NOTES }}"

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
99

1010
- Nothing yet!
1111

12+
## [0.1.0] - 2022-10-19
13+
14+
### Added
15+
16+
- Some new feature
17+
- Other new feature
18+
19+
### Fixed
20+
21+
- A few bugs
22+
1223
[unreleased]: https://github.com/tailwindlabs/tailwindcss-container-queries/compare/v0.1.0...HEAD
1324
[0.1.0]: https://github.com/tailwindlabs/tailwindcss-container-queries/releases/tag/v0.1.0

0 commit comments

Comments
 (0)