Skip to content

Commit

Permalink
ff
Browse files Browse the repository at this point in the history
  • Loading branch information
mcollao-hc authored May 6, 2024
1 parent 13c6194 commit f65a967
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/image-builder.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: ImageBuilder
# Run this workflow every time a new commit pushed to your repository
on: push
jobs:
build:
runs-on: self-hosted
steps:
- uses: actions/checkout@v3
- name: Import Secrets
uses: hashicorp/vault-action@v2
with:
url: http://127.0.0.1:8200
tlsSkipVerify: true
token: ${{ secrets.VAULT_TOKEN }}
secrets: |
secret/data/ci app_secret
- name: Build Docker Image
run: docker build . --file Dockerfile --build-arg app_secret="${{ env.APP_SECRET }}" -t vault-action-exampleapp

0 comments on commit f65a967

Please sign in to comment.