migrate back to gitea actions
This commit is contained in:
parent
1a720974fb
commit
2b8c683513
2 changed files with 34 additions and 37 deletions
34
.gitea/workflows/amd64-image.yml
Normal file
34
.gitea/workflows/amd64-image.yml
Normal file
|
@ -0,0 +1,34 @@
|
|||
name: Build neovim image
|
||||
run-name: Build Neovim image yay
|
||||
on:
|
||||
push:
|
||||
branches: [ "main" ]
|
||||
schedule:
|
||||
- cron: '30 3 */3 * *'
|
||||
|
||||
jobs:
|
||||
build-neovim:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: install actions deps
|
||||
run: |
|
||||
dnf install -y nodejs git
|
||||
- name: Check out repository code
|
||||
uses: actions/checkout@v3
|
||||
- run: podman build . --file Dockerfile --tag neovim:latest
|
||||
- name: build image
|
||||
run: podman login -u "${{ secrets.PACKAGES_USERNAME }}" -p "${{ secrets.PACKAGES_PASSWD }}" gitea.maciej.cloud
|
||||
- name: Push image
|
||||
run: |
|
||||
IMAGE_NAME="neovim"
|
||||
IMAGE_ID="gitea.maciej.cloud/packages/$IMAGE_NAME"
|
||||
podman tag $IMAGE_NAME:latest $IMAGE_ID:latest
|
||||
podman pull $IMAGE_ID:v1
|
||||
podman pull $IMAGE_ID:v2
|
||||
podman tag $IMAGE_ID:v2 $IMAGE_ID:v3
|
||||
podman tag $IMAGE_ID:v1 $IMAGE_ID:v2
|
||||
podman tag $IMAGE_ID:latest $IMAGE_ID:v1
|
||||
podman push $IMAGE_ID:latest
|
||||
podman push $IMAGE_ID:v1
|
||||
podman push $IMAGE_ID:v2
|
||||
podman push $IMAGE_ID:v3
|
37
.github/workflows/oci-image.yml
vendored
37
.github/workflows/oci-image.yml
vendored
|
@ -1,37 +0,0 @@
|
|||
name: Build neovim image
|
||||
run-name: Build Neovim image yay
|
||||
on:
|
||||
push:
|
||||
branches: [ "main" ]
|
||||
schedule:
|
||||
- cron: '30 3 */5 * *'
|
||||
|
||||
jobs:
|
||||
build-neovim:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Check out repository code
|
||||
uses: actions/checkout@v3
|
||||
- run: docker build . --file Dockerfile --tag neovim:latest
|
||||
- name: upload image
|
||||
#env:
|
||||
#PACKAGES_USERNAME: ${{ secrets.PACKAGES_USERNAME }}
|
||||
#PACKAGES_PASSWD: ${{ secrets.PACKAGES_PASSWD }}
|
||||
run: docker login -u "${{ secrets.PACKAGES_USERNAME }}" -p "${{ secrets.PACKAGES_PASSWD }}" gitea.maciej.cloud
|
||||
#- run: docker push gitea.maciej.cloud/packages/neovim
|
||||
- name: Push image
|
||||
run: |
|
||||
IMAGE_NAME="neovim"
|
||||
IMAGE_ID="gitea.maciej.cloud/packages/$IMAGE_NAME"
|
||||
docker tag $IMAGE_NAME:latest $IMAGE_ID:latest
|
||||
docker pull $IMAGE_ID:v1
|
||||
docker pull $IMAGE_ID:v2
|
||||
docker tag $IMAGE_ID:v2 $IMAGE_ID:v3
|
||||
docker tag $IMAGE_ID:v1 $IMAGE_ID:v2
|
||||
docker tag $IMAGE_ID:latest $IMAGE_ID:v1
|
||||
docker push $IMAGE_ID:latest
|
||||
docker push $IMAGE_ID:v1
|
||||
docker push $IMAGE_ID:v2
|
||||
docker push $IMAGE_ID:v3
|
||||
|
||||
|
Loading…
Reference in a new issue