mirror of
https://github.com/AmruthPillai/Reactive-Resume.git
synced 2025-11-10 04:22:27 +10:00
Bumps [digitalocean/action-doctl](https://github.com/digitalocean/action-doctl) from 2.1.0 to 2.1.1. - [Release notes](https://github.com/digitalocean/action-doctl/releases) - [Commits](https://github.com/digitalocean/action-doctl/compare/v2.1.0...v2.1.1) --- updated-dependencies: - dependency-name: digitalocean/action-doctl dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
22 lines
505 B
YAML
22 lines
505 B
YAML
name: Deploy Latest Version on DigitalOcean
|
|
|
|
on:
|
|
workflow_run:
|
|
workflows:
|
|
- Build and Push Docker Image
|
|
types:
|
|
- completed
|
|
|
|
jobs:
|
|
deploy:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Install DigitalOcean CLI
|
|
uses: digitalocean/action-doctl@v2.1.1
|
|
with:
|
|
token: ${{ secrets.DIGITALOCEAN_TOKEN }}
|
|
|
|
- name: Create Deployment with Latest Version
|
|
run: doctl apps create-deployment ${{ secrets.DIGITALOCEAN_APP_ID }} --wait --force-rebuild
|