-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
94 additions
and
1 deletion.
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 |
---|---|---|
@@ -1,2 +1,74 @@ | ||
# atlas-deploy-action | ||
A GitHub Action to deploy schema migrations with Atlas | ||
|
||
A GitHub Action to deploy versioned migrations with [Atlas](https://atlasgo.io). | ||
|
||
## Supported Workflows | ||
|
||
- Local - the migration directory is checked in to the repository. | ||
- Cloud - the migration directory is [connected to Atlas Cloud](https://atlasgo.io/cloud/directories). | ||
Runs are reported to your Atlas Cloud account. | ||
|
||
## Examples | ||
|
||
### Local Workflow | ||
|
||
```yaml | ||
name: Deploy Database Migrations | ||
on: | ||
push: | ||
branches: | ||
- master | ||
jobs: | ||
deploy: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Deploy Atlas Migrations | ||
uses: ariga/atlas-deploy-action@v0 | ||
with: | ||
url: ${{ secrets.DATABASE_URL }} | ||
dir: path/to/migrations | ||
``` | ||
### Cloud Workflow | ||
```yaml | ||
name: Deploy Database Migrations | ||
on: | ||
push: | ||
branches: | ||
- master | ||
jobs: | ||
deploy: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Deploy Atlas Migrations | ||
uses: ariga/atlas-deploy-action@v0 | ||
with: | ||
url: ${{ secrets.DATABASE_URL }} | ||
cloud-token: ${{ secrets.ATLAS_CLOUD_TOKEN }} | ||
cloud-dir: hello # replace with your directory name | ||
``` | ||
## Reference | ||
### Inputs | ||
- `url`: URL to target database (should be passed as a secret). (Required) | ||
- `dir`: Local path of the migration directory in the repository. (Optional) | ||
- `cloud-token`: Token for using Atlas Cloud (should be passed as a secret). (Optional) | ||
- `cloud-dir`: Name of the migration directory in the cloud. (Optional) | ||
- `cloud-tag`: Optional. Tag of a migration version in the cloud. (Optional) | ||
|
||
### Outputs | ||
|
||
- `error`: Error message if any. | ||
- `current`: Current migration version. | ||
- `target`: Target migration version. | ||
- `pending_count`: Number of pending migrations. | ||
- `applied_count`: Number of applied migrations. | ||
|
||
## License | ||
|
||
This project is licensed under the [Apache License, Version 2.0](LICENSE). |
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