Skip to content

Commit

Permalink
Fix wrong repository name in action readme (#15)
Browse files Browse the repository at this point in the history
  • Loading branch information
alcaeus authored Jun 4, 2024
1 parent 6cc1459 commit b9672fd
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ The action requires `id-token: write` permissions.

```yaml
- name: setup
uses: mongodb/drivers-github-tools/setup@v2
uses: mongodb-labs/drivers-github-tools/setup@v2
with:
aws_role_arn: ${{ secrets.AWS_ROLE_ARN }}
aws_region_name: ${{ vars.AWS_REGION_NAME }}
Expand All @@ -38,17 +38,17 @@ Use this action to create signed git artifacts:

```yaml
- name: Setup
uses: mongodb/drivers-github-tools/setup@v2
uses: mongodb-labs/drivers-github-tools/setup@v2
with:
...
- name: Create signed commit
uses: mongodb/drivers-github-tools/git-sign@v2
uses: mongodb-labs/drivers-github-tools/git-sign@v2
with:
command: "git commit -m 'Commit' -s --gpg-sign=${{ vars.GPG_KEY_ID }}"
- name: Create signed tag
uses: mongodb/drivers-github-tools/git-sign@v2
uses: mongodb-labs/drivers-github-tools/git-sign@v2
with:
command: "git tag -m 'Tag' -s --local-user=${{ vars.GPG_KEY_ID }} <tag>"
```
Expand All @@ -59,12 +59,12 @@ This action is used to create detached signatures for files:

```yaml
- name: Setup
uses: mongodb/drivers-github-tools/setup@v2
uses: mongodb-labs/drivers-github-tools/setup@v2
with:
...
- name: Create detached signature
uses: mongodb/drivers-github-tools/gpg-sign@v2
uses: mongodb-labs/drivers-github-tools/gpg-sign@v2
with:
filenames: somefile.ext
```
Expand All @@ -76,12 +76,12 @@ You can also supply a glob pattern to sign a group of files:

```yaml
- name: Setup
uses: mongodb/drivers-github-tools/setup@v2
uses: mongodb-labs/drivers-github-tools/setup@v2
with:
...
- name: Create detached signature
uses: mongodb/drivers-github-tools/garasign/gpg-sign@v1
uses: mongodb-labs/drivers-github-tools/garasign/gpg-sign@v1
with:
filenames: dist/*
```
Expand All @@ -98,12 +98,12 @@ It will create the file `$S3_ASSETS/authorized_publication.txt`

```yaml
- name: Setup
uses: mongodb/drivers-github-tools/setup@v2
uses: mongodb-labs/drivers-github-tools/setup@v2
with:
...
- name: Create Authorized Publication Report
uses: mongodb/drivers-github-tools/authorized-pub@v2
uses: mongodb-labs/drivers-github-tools/authorized-pub@v2
with:
product_name: Mongo Python Driver
release_version: ${{ github.ref_name }}
Expand All @@ -122,11 +122,11 @@ Push the commit and tag to the source branch unless `dry_run` is set.

```yaml
- name: Setup
uses: mongodb/drivers-github-tools/setup@v2
uses: mongodb-labs/drivers-github-tools/setup@v2
with:
...
- uses: mongodb/drivers-github-tools/python/bump-and-tag@v2
- uses: mongodb-labs/drivers-github-tools/python/bump-and-tag@v2
with:
version: ${{ inputs.version }}
version_bump_script: ./.github/scripts/bump-version.sh
Expand All @@ -144,7 +144,7 @@ If `dry_run` is set, nothing will be published or pushed.

```yaml
- name: Setup
uses: mongodb/drivers-github-tools/setup@v2
uses: mongodb-labs/drivers-github-tools/setup@v2
with:
...
Expand Down

0 comments on commit b9672fd

Please sign in to comment.