mirror of
https://github.com/aunefyren/wrapperr
synced 2025-01-25 15:35:00 +00:00
19 lines
387 B
YAML
19 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
|