Skip to content

Commit

Permalink
Add action
Browse files Browse the repository at this point in the history
  • Loading branch information
ngarside committed Mar 10, 2024
1 parent 3d6a245 commit d04e910
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# This is free and unencumbered software released into the public domain.

name: publish

on:
workflow_dispatch:

jobs:
publish:
runs-on: ubuntu-latest
permissions:
packages: write
steps:

- name: checkout
uses: actions/checkout@v3

- name: login
run: podman login ghcr.io --username ${{ github.actor }} --password ${{ secrets.GITHUB_TOKEN }}

- name: build
run: podman build --file desktop.containerfile --tag ghcr.io/ngarside/desktop:latest .

- name: push
run: podman push ghcr.io/ngarside/desktop:latest

0 comments on commit d04e910

Please sign in to comment.