зеркало из https://github.com/Azure/ARO-RP.git
26 строки
459 B
YAML
26 строки
459 B
YAML
name: ci-go
|
|
|
|
on:
|
|
push:
|
|
tags:
|
|
- v*
|
|
branches:
|
|
- master
|
|
pull_request:
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
ci-from-docker:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v3
|
|
- name: build from buildah
|
|
uses: redhat-actions/buildah-build@v2
|
|
with:
|
|
image: test-image
|
|
tags: ${{ github.sha }}
|
|
context: .
|
|
containerfiles: ./Dockerfile.ci
|