Skip to content

Merge pull request #219 from oras-project/contributors/update-2025-09-15 #659

Merge pull request #219 from oras-project/contributors/update-2025-09-15

Merge pull request #219 from oras-project/contributors/update-2025-09-15 #659

Workflow file for this run

name: Build and Deploy Container

Check failure on line 1 in .github/workflows/build-deploy.yaml

View workflow run for this annotation

GitHub Actions / .github/workflows/build-deploy.yaml

Invalid workflow file

(Line: 8, Col: 17): A sequence was not expected
on:
# Publish packages on release
release:
types: [published]
pull_request: []
# On push to main we build and deploy images
push:
branches:
- main
jobs:
build:
permissions:
packages: write
runs-on: ubuntu-latest
name: Build
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Build Container
run: docker build -t ghcr.io/oras-project/oras-py:latest .
- name: GHCR Login
if: (github.event_name != 'pull_request')
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Tag and Push Release Image
if: (github.event_name == 'release')
run: |
tag=${GITHUB_REF#refs/tags/}
echo "Tagging and releasing ghcr.io/oras-project/oras-py:${tag}"
docker tag ghcr.io/oras-project/oras-py:latest ghcr.io/oras-project/oras-py:${tag}
docker push ghcr.io/oras-project/oras-py:${tag}
- name: Deploy
if: (github.event_name != 'pull_request')
run: docker push ghcr.io/oras-project/oras-py:latest