Release: v2.0.0 #10
Workflow file for this run
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 is a basic workflow to help you get started with the GitHub Auto-Release on Commit Action. | |
name: VKACI Container Build | |
on: | |
release: | |
types: [published] | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
jobs: | |
release: | |
runs-on: self-hosted | |
steps: | |
- uses: actions/checkout@v2 | |
- name: build container with tag ${{ github.ref_name }} | |
run: cd app && echo ${{ secrets.USER_PASS }} | sudo -S bash buildah_build.sh ${{ github.ref_name }} |