Skip to content

Commit

Permalink
simplify workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
EdyTheCow committed Apr 19, 2024
1 parent 961838b commit 0b9a208
Showing 1 changed file with 15 additions and 24 deletions.
39 changes: 15 additions & 24 deletions .github/workflows/ente-server-tools-docker-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,28 +3,19 @@ name: Build and publish Ente server tools
on: [push]

jobs:
build-and-push-docker-image:
name: Build Docker image and push
runs-on: ubuntu-latest
publish:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4

steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Set up Docker Buildx
id: buildx
uses: docker/setup-buildx-action@v3

- name: Login to Github Packages
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Build image and push to GitHub Container Registry
uses: docker/build-push-action@v5
with:
context: ente-server-tools/.
tags: ghcr.io/edythecow/ente-server-tools:latest
push: true
- name: Build and push
uses: mr-smithers-excellent/docker-build-push@v6
with:
dockerfile: ente-server-tools/Dockerfile
image: ente-server-tools
registry: ghcr.io
enableBuildKit: true
tags: latest
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 0b9a208

Please sign in to comment.