This repository has been archived on 2024-03-03. You can view files and clone it, but cannot push or open issues or pull requests.
unifi-cam-proxy/.github/workflows/image.yml

37 lines
1008 B
YAML
Raw Normal View History

2024-03-02 11:37:04 +00:00
name: Build Docker image
on:
push:
2024-03-02 11:40:21 +00:00
branches: [master]
2024-03-02 11:37:04 +00:00
jobs:
2024-03-02 11:40:21 +00:00
docker:
runs-on: ubuntu-22.04
2024-03-02 11:37:04 +00:00
steps:
2024-03-02 11:40:21 +00:00
- name: Checkout
uses: actions/checkout@v4
2024-03-02 11:37:04 +00:00
2024-03-02 11:45:21 +00:00
- name: Install Docker
2024-03-02 11:40:21 +00:00
if: steps.docker-cache.outputs.cache-hit != 'true'
2024-03-02 11:37:04 +00:00
run: |
2024-03-02 11:40:21 +00:00
wget -q -O /tmp/docker.tgz https://download.docker.com/linux/static/stable/x86_64/docker-20.10.23.tgz \
&& tar --extract --file /tmp/docker.tgz --directory /usr/bin --strip-components 1 --no-same-owner docker/docker \
&& rm -rf /tmp/* &&
echo "Done"
2024-03-02 11:37:04 +00:00
- name: Set up Docker Buildx
2024-03-02 11:40:21 +00:00
uses: docker/setup-buildx-action@v3
2024-03-02 11:37:04 +00:00
2024-03-02 11:40:21 +00:00
- name: Login to Repo
uses: docker/login-action@v3
2024-03-02 11:37:04 +00:00
with:
2024-03-02 11:40:21 +00:00
username: ${{ secrets.REPO_USERNAME }}
password: ${{ secrets.REPO_TOKEN }}
2024-03-02 11:37:04 +00:00
2024-03-02 11:40:21 +00:00
- name: Build and Push (Latest)
uses: docker/build-push-action@v5
2024-03-02 11:37:04 +00:00
with:
push: true
2024-03-02 11:40:21 +00:00
context: .
2024-03-02 11:52:11 +00:00
tags: fascinated/unifi-cam-proxy:latest