-
Notifications
You must be signed in to change notification settings - Fork 34
47 lines (38 loc) · 1.14 KB
/
build-deploy.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
name: Build and Deploy Container
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