-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: rename firecracker_models into firepilot_models
Signed-off-by: AlexandreBrg <[email protected]>
- Loading branch information
1 parent
15988dc
commit b187db1
Showing
55 changed files
with
133 additions
and
1,310 deletions.
There are no files selected for viewing
This file contains 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 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 |
---|---|---|
|
@@ -13,7 +13,31 @@ on: | |
jobs: | ||
update_release_draft: | ||
runs-on: ubuntu-22.04 | ||
outputs: | ||
version: ${{ steps.drafter.outputs.tag_name }} | ||
steps: | ||
- uses: release-drafter/[email protected] | ||
id: drafter | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.RIK_CI_RW }} | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
bump_firepilot_version: | ||
needs: [update_release_draft] | ||
if: github.event_name == 'push' && github.ref == 'refs/heads/main' | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
- uses: actions/checkout@v2 | ||
with: | ||
fetch-depth: 0 | ||
- name: Bump version | ||
run: | | ||
sed -i -e 's/^version = .*/version = "${{ needs.update_release_draft.outputs.version }}"/' firepilot/Cargo.toml | ||
- name: Commit changes | ||
run: | | ||
git config --local user.email "[email protected]" | ||
git config --local user.name "abrgBot" | ||
git add firepilot/Cargo.toml | ||
git commit -m "[skip ci] Bump firepilot version to ${{ needs.update_release_draft.outputs.version }}" | ||
git push | ||
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains 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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
[workspace] | ||
members = [ | ||
"firepilot", | ||
"firecracker-models" | ||
"firepilot_models" | ||
] |
This file contains 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 was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.