1
0
mirror of https://github.com/nitezs/sub2clash.git synced 2024-12-25 01:34:41 -05:00
sub2clash/.github/workflows/docker.yml

32 lines
618 B
YAML
Raw Normal View History

2023-09-13 03:26:56 -04:00
name: Build and Push to GHCR
on:
push:
2023-09-14 12:31:57 -04:00
branches:
- dev
workflow_dispatch:
2023-09-13 03:26:56 -04:00
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v3
- name: Login to GitHub Container Registry
uses: docker/login-action@v1
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push Docker image
uses: docker/build-push-action@v2
with:
context: .
file: ./Dockerfile
push: true
tags: ghcr.io/${{ github.repository }}:dev
2023-09-13 03:26:56 -04:00