-
Notifications
You must be signed in to change notification settings - Fork 0
34 lines (30 loc) · 1009 Bytes
/
ci.yml
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
# This workflow will build a package using Maven and then publish it to GitHub packages when a release is created
# For more information see: https://github.com/actions/setup-java/blob/main/docs/advanced-usage.md#apache-maven-with-a-settings-path
name: CI
on:
push:
branches: [ main ]
pull_request:
branches: [ "*" ]
jobs:
Docker:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
java: [8]
steps:
- name: "Login to Docker Registry"
uses: docker/login-action@v2
with:
registry: release.daocloud.io
username: ${{ secrets.DAOCLOUD_REGISTRY_USERNAME }}
password: ${{ secrets.DAOCLOUD_REGISTRY_PWD }}
- name: Get Hash
id: hash
run: echo "${{ github.sha }}"
- name: "Build and Push"
uses: docker/build-push-action@v4
with:
push: true
tags: release.daocloud.io/skoala/envoy-extproc-payloadlimit-demo-go:${{ github.sha }}