-
Notifications
You must be signed in to change notification settings - Fork 49
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* v0.3.3 * Fix zone in pre-release * Include Cargo.lock in Dockerfile * Flatten zipfile * Install cargo-workspaces before checkout * Fix to old serde version to avoid breakage w/ current nightly
- Loading branch information
1 parent
3e41996
commit 90878e6
Showing
10 changed files
with
33 additions
and
38 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -56,7 +56,7 @@ jobs: | |
- name: Build Aquascope serve | ||
run: cargo build -p aquascope_serve --release | ||
- name: Zip artifacts | ||
run : zip artifacts.zip ./image.tar ./target/release/aquascope_serve | ||
run : zip -j artifacts.zip ./image.tar ./target/release/aquascope_serve | ||
- name: Authenticate to Google Cloud | ||
uses: google-github-actions/auth@v1 | ||
with: | ||
|
@@ -66,7 +66,7 @@ jobs: | |
with: | ||
version: '>= 412.0.0' | ||
- name: Upload artifacts | ||
run: gcloud compute scp artifacts.zip gh-actions@aquascope:~/ --zone us-central1-a --tunnel-through-iap | ||
run: gcloud compute scp artifacts.zip gh-actions@aquascope:~/ --zone us-central1-c --tunnel-through-iap | ||
|
||
update-frontend: | ||
needs: build-backend | ||
|
@@ -105,12 +105,12 @@ jobs: | |
needs: [update-frontend,update-server] | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions-rs/[email protected] | ||
with: | ||
crate: cargo-workspaces | ||
version: latest | ||
use-tool-cache: true | ||
- uses: actions/checkout@v3 | ||
- name: Quick Setup | ||
uses: ./.github/workflows/quick-setup | ||
# Run cargo build to ensure crates/mdbook-aquascope/js is populated | ||
|
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
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
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
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
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 |
---|---|---|
|
@@ -4,7 +4,7 @@ authors = [ | |
"Will Crichton <[email protected]>", | ||
"Gavin Gray <[email protected]>" | ||
] | ||
version = "0.3.2" | ||
version = "0.3.3" | ||
license = "MIT" | ||
edition = "2021" | ||
description = "Handy utilities for working in the Aquascope workspace" | ||
|
@@ -20,3 +20,4 @@ include = [ | |
[dependencies] | ||
toml = "0.5" | ||
anyhow = "1" | ||
serde = { workspace = true } |
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