18 lines
509 B
YAML
18 lines
509 B
YAML
name: Gitea Actions Demo
|
|
run-name: ${{ gitea.actor }} is testing out Gitea Actions 🚀
|
|
on: [push]
|
|
|
|
jobs:
|
|
build_image:
|
|
runs-on: osx
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
- run: |
|
|
export
|
|
pwd
|
|
cd ${{ github.repository }}/osx
|
|
packer init .
|
|
packer build var macos_version=${OSX_VERSION} .
|
|
tart push ${OSX_VERSION}base gitea.hnatekmar.xyz/osx:${OSX_VERSION}latest chunksize 8
|
|
tart prune spacebudget 25 |