-
Notifications
You must be signed in to change notification settings - Fork 68
Adds semantic versioning and release publishing #39
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
srinivas212
merged 8 commits into
mlcommons:main
from
AlexandruAntonescuKeysight:version_update_release_publish
May 17, 2024
Merged
Changes from 7 commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
e5b16c0
adds semantic versioning and adds actions-user to the allow list in C…
AlexandruAntonescuKeysight 9fab0fa
adds release publish to the version and release workflow
AlexandruAntonescuKeysight e6a93fa
adds wheel building and uploading it to its coresponding release entry
AlexandruAntonescuKeysight b50352f
init the proto.lock
AlexandruAntonescuKeysight 40a32dd
fix linting
AlexandruAntonescuKeysight b618636
fix linting and modifies start version in VERSION file
AlexandruAntonescuKeysight ee04d28
fix pyright errors
AlexandruAntonescuKeysight 376b0ad
removes .vscode from gitignore
AlexandruAntonescuKeysight File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,61 @@ | ||
| name: Update version and publish release | ||
| on: | ||
| push: | ||
| branches: | ||
| - main | ||
| jobs: | ||
| build: | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - uses: actions/checkout@v4 | ||
| - uses: actions/setup-python@v2 | ||
| with: | ||
| python-version: 3.7 | ||
| - name: Set Up Go | ||
| uses: actions/setup-go@v4 | ||
| with: | ||
| go-version: '1.20' | ||
| - name: Install protolock | ||
| run: | | ||
| go install github.com/nilslice/protolock/cmd/protolock@latest | ||
| protolock | ||
| - name: Check broken compatibility and update version | ||
| run: | | ||
| python3 version.py | ||
| echo "RELEASE_TAG=$(cat VERSION)" >> $GITHUB_ENV | ||
| - name: Commit changes | ||
| uses: EndBug/add-and-commit@v9 | ||
| env: | ||
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
| with: | ||
| author_name: GitHub Actions | ||
| author_email: [email protected] | ||
| message: Release ${{ env.RELEASE_TAG }} | ||
| add: "['VERSION', 'proto.lock']" | ||
| push: "-o ci.skip" | ||
| - name: Create Release | ||
| id: create_release | ||
| uses: actions/create-release@v1 | ||
| env: | ||
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
| with: | ||
| tag_name: ${{ env.RELEASE_TAG }} | ||
| release_name: Release ${{ env.RELEASE_TAG }} | ||
| body: | | ||
| Release ${{ env.RELEASE_TAG }} | ||
| draft: false | ||
| prerelease: false | ||
| - name: Build wheel | ||
| run: | | ||
| pip install --upgrade build | ||
| python3 -m build | ||
| - name: Upload Release Asset | ||
| id: upload-release-asset | ||
| uses: actions/upload-release-asset@v1 | ||
| env: | ||
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
| with: | ||
| upload_url: ${{ steps.create_release.outputs.upload_url }} | ||
| asset_path: ./dist/chakra-${{ env.RELEASE_TAG }}-py3-none-any.whl | ||
| asset_name: chakra.whl | ||
| asset_content_type: application/whl |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -7,3 +7,4 @@ __pycache__/ | |
| *.et | ||
| *.dot | ||
| .pyre | ||
| .vscode/ | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| 0.4.0 |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nit seems a bit user editor specific
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I've removed it