File tree Expand file tree Collapse file tree 2 files changed +29
-0
lines changed
Expand file tree Collapse file tree 2 files changed +29
-0
lines changed Original file line number Diff line number Diff line change 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 }}"
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments