srpmproc/.github/workflows/oci.yml
2020-12-17 13:08:19 +01:00

20 lines
536 B
YAML

name: OCI
on:
release:
types: [created]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Login to Docker Hub
run: docker login --username mstg --password ${{secrets.DOCKER_SECRET}}
- name: Get the version
run: echo ::set-output name=SOURCE_TAG::${GITHUB_REF#refs/tags/}
- name: Build the Docker image
run: docker build . -t docker.io/mstg/srpmproc:${SOURCE_TAG}
- name: Push to Docker Hub
run: docker push docker.io/mstg/srpmproc:${SOURCE_TAG}