Skip to content

Commit

Permalink
Rename repo to depot/setup-action
Browse files Browse the repository at this point in the history
  • Loading branch information
jacobwgillespie committed Mar 24, 2022
1 parent 8b37f83 commit 9980b0e
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# `setup-depot` GitHub Action
# Depot `setup-action` GitHub Action

Provides the [Depot CLI](https://github.com/depot/cli) in the GitHub Actions environment, allowing access to the `depot` binary in subsequent workflow steps.

Expand All @@ -10,7 +10,7 @@ Download and install the latest version of the CLI:
jobs:
job-name:
steps:
- uses: depot/setup-depot@v1
- uses: depot/setup-action@v1
- run: depot ...
```
Expand All @@ -20,7 +20,7 @@ Download and install a specific version of the CLI:
jobs:
job-name:
steps:
- uses: depot/setup-depot@v1
- uses: depot/setup-action@v1
with:
version: 1.2.3
- run: depot ...
Expand All @@ -38,7 +38,7 @@ The `depot` CLI can read a Depot API token from the `DEPOT_TOKEN` environment va
jobs:
job-name:
steps:
- uses: depot/setup-depot@v1
- uses: depot/setup-action@v1
- run: depot build ...
env:
DEPOT_TOKEN: ${{ secrets.DEPOT_TOKEN }}
Expand Down
2 changes: 1 addition & 1 deletion dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -5439,7 +5439,7 @@ const core = __importStar(__nccwpck_require__(31));
const http = __importStar(__nccwpck_require__(875));
const toolCache = __importStar(__nccwpck_require__(723));
const path = __importStar(__nccwpck_require__(17));
const client = new http.HttpClient('setup-depot');
const client = new http.HttpClient('depot-setup-action');
async function run() {
// Get user-specified version to install (defaults to "latest")
const version = core.getInput('version');
Expand Down
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import * as path from 'path'

type ApiResponse = {ok: true; url: string} | {ok: false; error: string}

const client = new http.HttpClient('setup-depot')
const client = new http.HttpClient('depot-setup-action')

async function run() {
// Get user-specified version to install (defaults to "latest")
Expand Down

0 comments on commit 9980b0e

Please sign in to comment.