2021-04-26 17:34:06 +08:00
|
|
|
name: Docker Image CI
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
2022-06-05 18:31:28 +08:00
|
|
|
branches: [ "main" ]
|
|
|
|
pull_request:
|
|
|
|
branches: [ "main" ]
|
2022-06-05 18:52:01 +08:00
|
|
|
workflow_dispatch:
|
2021-04-26 17:34:06 +08:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
|
|
|
|
build:
|
|
|
|
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
2022-06-05 18:31:28 +08:00
|
|
|
- uses: actions/checkout@v3
|
2022-06-05 18:52:01 +08:00
|
|
|
- name: Build and push Docker images
|
|
|
|
uses: docker/build-push-action@v1
|
2022-06-05 18:31:28 +08:00
|
|
|
with:
|
2022-06-05 18:52:01 +08:00
|
|
|
username: ${{ secrets.DOCKER_USERNAME }}
|
|
|
|
password: ${{ secrets.DOCKER_PASSWORD }}
|
|
|
|
repository: xbeeant/oo-unlimit
|
2023-04-23 14:18:16 +08:00
|
|
|
tags: latest, 7.3.3.50
|
2022-09-24 13:04:27 +08:00
|
|
|
|