This commit is contained in:
parent
5fc14f1ada
commit
8593a3aed7
1 changed files with 5 additions and 4 deletions
|
@ -8,14 +8,15 @@ jobs:
|
||||||
runs-on: alpine
|
runs-on: alpine
|
||||||
steps:
|
steps:
|
||||||
-
|
-
|
||||||
name: Install buildah
|
name: Install dependencies
|
||||||
shell: sh
|
shell: sh
|
||||||
run: |
|
run: |
|
||||||
apk add buildah git
|
apk add buildah git
|
||||||
-
|
-
|
||||||
name: Checkout
|
name: Checkout repository
|
||||||
shell: sh
|
shell: sh
|
||||||
uses: actions/checkout@v4
|
run: |
|
||||||
|
git clone --branch ${{ github.ref_name }} ${{ github.server_url }}/${{ github.repository }} ${{ github.workspace }}
|
||||||
-
|
-
|
||||||
name: Authenticate with registry
|
name: Authenticate with registry
|
||||||
shell: sh
|
shell: sh
|
||||||
|
@ -26,5 +27,5 @@ jobs:
|
||||||
shell: sh
|
shell: sh
|
||||||
run: |
|
run: |
|
||||||
id
|
id
|
||||||
$GITHUB_WORKSPACE/builder.sh ${{ env.REGISTRY_IMAGE }}
|
${{ github.workspace }}/builder.sh ${{ env.REGISTRY_IMAGE }}
|
||||||
buildah push ${{ env.REGISTRY_IMAGE }}
|
buildah push ${{ env.REGISTRY_IMAGE }}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue