Skip to content

cleanup: bump actions/setup-go to v5 #10

cleanup: bump actions/setup-go to v5

cleanup: bump actions/setup-go to v5 #10

Workflow file for this run

name: Image
on:
push:
branches: [ "main" ]
env:
REGISTRY_USER: ${{ github.actor }}
REGISTRY_PASSWORD: ${{ secrets.GITHUB_TOKEN }}
jobs:
image:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build image
run: docker image build -f Containerfile --tag ghcr.io/vanilla-os/differ:main .
- name: Publish image
if: github.repository == 'Vanilla-OS/Differ' && github.ref == 'refs/heads/main'
run: |
docker login ghcr.io -u ${{ env.REGISTRY_USER }} -p ${{ env.REGISTRY_PASSWORD }}
docker image push "ghcr.io/vanilla-os/differ:main"