Some checks failed
Test Deploy to OCI Registry / deploy (push) Failing after 1m17s
23 lines
554 B
YAML
23 lines
554 B
YAML
name: Test Deploy to OCI Registry
|
|
|
|
on:
|
|
push:
|
|
branches: [ main ]
|
|
|
|
jobs:
|
|
deploy:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout Repository
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Deploy to OCI Registry
|
|
uses: SevenOfAces/DeployImage@main
|
|
with:
|
|
registry-url: 'https://git.smgames.club'
|
|
registry-token: ${{ secrets.OCI_REGISTRY_TOKEN }}
|
|
architectures: 'amd64,arm64'
|
|
tags: 'latest'
|
|
name: 'auto'
|
|
dockerfile: './Dockerfile'
|
|
owner: 'SevenOfAces'
|