Compare commits
15 Commits
master
...
feat/migra
Author | SHA1 | Date | |
---|---|---|---|
6e8a6e70f7 | |||
bcf0eed0a9 | |||
ab620531ed | |||
fc500c5605 | |||
ceebed25a0 | |||
55a7affa1a | |||
50ca134431 | |||
1824582a49 | |||
5b98632bbf | |||
5a8f64a0ff | |||
1fa4eadfc4 | |||
67f6b13bae | |||
441402ae5c | |||
5c87f90b5d | |||
4b46541ba2 |
@ -507,7 +507,7 @@ steps:
|
||||
from_secret: container_image_registry_user
|
||||
DEST_CRED_PASSWORD:
|
||||
from_secret: container_image_registry_password
|
||||
image: quay.io/skopeo/stable:v1.11.2
|
||||
image: quay.io/skopeo/stable:v1.12.0
|
||||
|
||||
- name: email-notification
|
||||
environment:
|
||||
@ -791,7 +791,7 @@ steps:
|
||||
from_secret: container_image_registry_user
|
||||
DEST_CRED_PASSWORD:
|
||||
from_secret: container_image_registry_password
|
||||
image: quay.io/skopeo/stable:v1.11.2
|
||||
image: quay.io/skopeo/stable:v1.12.0
|
||||
|
||||
- name: email-notification
|
||||
environment:
|
||||
|
32
.gitea/workflows/build.yaml
Normal file
32
.gitea/workflows/build.yaml
Normal file
@ -0,0 +1,32 @@
|
||||
name: build
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [ master ]
|
||||
pull_request:
|
||||
branches: [ master ]
|
||||
|
||||
jobs:
|
||||
build-x86_64:
|
||||
runs-on: x86_64
|
||||
steps:
|
||||
- name: checkout repo
|
||||
uses: actions/checkout@v3
|
||||
# - name: Install docker
|
||||
# run: |
|
||||
# apt-get update
|
||||
# apt-get upgrade --yes
|
||||
# apt-get install --yes ca-certificates curl gnupg
|
||||
# install -m 0755 -d /etc/apt/keyrings
|
||||
# curl -fsSL https://download.docker.com/linux/ubuntu/gpg | gpg --dearmor -o /etc/apt/keyrings/docker.gpg
|
||||
# chmod a+r /etc/apt/keyrings/docker.gpg
|
||||
# echo "deb [arch="$(dpkg --print-architecture)" signed-by=/etc/apt/keyrings/docker.gpg] https://download.docker.com/linux/ubuntu "$(. /etc/os-release && echo "$VERSION_CODENAME")" stable" | tee /etc/apt/sources.list.d/docker.list > /dev/null
|
||||
# apt-get update --yes
|
||||
# apt-get install --yes docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin
|
||||
|
||||
|
||||
- name: build application
|
||||
env:
|
||||
CONTAINER_RUNTIME: podman
|
||||
shell: bash
|
||||
run: make container-image/build
|
Loading…
Reference in New Issue
Block a user