Skip to content

Commit

Permalink
feat: update docs (#130)
Browse files Browse the repository at this point in the history
  • Loading branch information
scarletteliza authored Jun 28, 2023
1 parent 709c4b9 commit f432b46
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion site/docs/workflows/dart_pub_publish.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,5 +60,5 @@ jobs:
with:
dart_sdk: 'stable'
working_directory: 'packages/my_dart_package'
pub_credentials: ${{ secrets.PUB_CREDENTIALS }}
pub_credentials: secrets.PUB_CREDENTIALS
```
4 changes: 2 additions & 2 deletions site/docs/workflows/flutter_pub_publish.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ The Flutter Pub Publish workflow consists of the following steps:

## Example Usage

We recommend using [GitHub Secrets][github_actions_secrets_docs] for safely storing and reading the credentials.
We recommend using [GitHub Secrets](https://docs.github.com/en/actions/security-guides/encrypted-secrets) for safely storing and reading the credentials.

```yaml
name: My Flutter Pub Publish Workflow
Expand All @@ -70,5 +70,5 @@ jobs:
flutter_channel: 'stable'
flutter_version: '2.8.1'
working_directory: 'packages/my_flutter_package'
pub_credentials: ${{ secrets.PUB_CREDENTIALS }}
pub_credentials: secrets.PUB_CREDENTIALS
```
4 changes: 2 additions & 2 deletions site/docs/workflows/mason_publish.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ The Mason Publish workflow consists of the following steps:

## Example Usage

We recommend using [GitHub Secrets][github_actions_secrets_docs] for safely storing and reading the credentials.
We recommend using [GitHub Secrets](https://docs.github.com/en/actions/security-guides/encrypted-secrets) for safely storing and reading the credentials.

```yaml
name: My Mason Brick Publish Workflow
Expand All @@ -60,5 +60,5 @@ jobs:
with:
mason_version: '0.1.0-dev.50'
working_directory: 'packages/my_mason_brick'
mason_credentials: ${{ secrets.MASON_CREDENTIALS }}
mason_credentials: secrets.MASON_CREDENTIALS
```

0 comments on commit f432b46

Please sign in to comment.