mirror of
https://github.com/aunefyren/wrapperr
synced 2025-01-25 07:25:00 +00:00
20 lines
387 B
YAML
20 lines
387 B
YAML
|
name: Docker Image for Pushes
|
||
|
|
||
|
on:
|
||
|
push:
|
||
|
branches: [main]
|
||
|
|
||
|
jobs:
|
||
|
build:
|
||
|
runs-on: ubuntu-latest
|
||
|
|
||
|
steps:
|
||
|
- uses: actions/checkout@v2
|
||
|
- uses: docker/build-push-action@v1
|
||
|
with:
|
||
|
username: ${{ secrets.DOCKER_USERNAME }}
|
||
|
password: ${{ secrets.DOCKER_PASSWORD }}
|
||
|
registry: docker.io
|
||
|
repository: aunefyren/wrapperr
|
||
|
tags: beta
|