adds workflow to repo #1
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
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 |