Skip to content
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

Updated dry-run/skip-warnings commands #1301

Merged
merged 1 commit into from
Sep 17, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/projects/soldeer.md
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ You are at risk to push sensitive files to the central repository that then can
Furthermore, we've implemented a warning that it will be triggered if you try to push a project that contains any `.dot` files/directories.
If you want to skip this warning, you can just use
```bash
forge soldeer push my-project~1.0.0 --skip-warnings true
forge soldeer push my-project~1.0.0 --skip-warnings
```


Expand All @@ -184,11 +184,11 @@ forge soldeer push my-project~1.0.0 --skip-warnings true
In case you want to simulate what would happen if you push a version, you can use the `--dry-run` flag. This will create a zip file that you can inspect before pushing it to the central repository.

```bash
forge soldeer push my-project~1.0.0 --dry-run true
forge soldeer push my-project~1.0.0 --dry-run
```

#### Login Data
By default, Soldeer saves the login token in the `~/.soldeer/.soldeer_login` file. If you want to save that token to another location, you need to set the environment variable `SOLDEER_LOGIN_FILE`.
By default, Soldeer saves the login token in the `~/.soldeer/.soldeer_login` file, which is used to push files to the central repository. If you prefer to save the token in a different location, you can set the environment variable `SOLDEER_LOGIN_FILE`.


> **Warning** ⚠️
Expand Down