Skip to content

Commit

Permalink
Some fixes from manual tests
Browse files Browse the repository at this point in the history
  • Loading branch information
markusthoemmes committed Jul 30, 2024
1 parent 8f235ff commit 84251ad
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 3 deletions.
7 changes: 7 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,13 @@ updates:
directory: "/" # Location of package manifests
schedule:
interval: "daily"
- package-ecosystem: "docker"
directory: "/"
labels:
- "dependencies"
open-pull-requests-limit: 10
schedule:
interval: "daily"
- package-ecosystem: "github-actions"
directory: "/"
labels:
Expand Down
2 changes: 1 addition & 1 deletion .github/release-drafter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,6 @@ autolabeler:
- label: "maintenance"
files:
- ".github/**/*"
- ".ko.yaml"
- "Dockerfile"
- "go.mod"
- "go.sum"
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,8 @@ jobs:
uses: actions/checkout@v4
- name: Deploy the app
uses: digitalocean/app_action/deploy@main
with:
token: ${{ secrets.DIGITALOCEAN_ACCESS_TOKEN }}
```

### Deploy an app with a prebuilt image
Expand Down Expand Up @@ -111,14 +113,14 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v4
- name: Log in to the Container registry
uses: docker/login-action@65b78e6e13532edd9afa3aa52ac7964289d1a9c1
uses: docker/login-action@v3.3.0
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push Docker image
id: push
uses: docker/build-push-action@f2a1d5e99d037542a71f64918e516c093c6f3fc4
uses: docker/build-push-action@v6.5.0
with:
context: .
push: true
Expand Down

0 comments on commit 84251ad

Please sign in to comment.