git-next/.forgejo/workflows/push-main.yml
Paul Campbell 865e6d1e59
Some checks failed
Test / build (map[name:nightly]) (push) Successful in 4m50s
Test / build (map[name:stable]) (push) Successful in 5m35s
Release Please / Docker image (push) Failing after 6s
Release Please / Release-plz (push) Successful in 47s
build: run docker commands on ubuntu:latest image
2025-01-12 16:31:59 +00:00

65 lines
1.5 KiB
YAML

name: Release Please
permissions:
pull-requests: write
contents: write
on:
push:
branches:
- main
env:
CARGO_TERM_COLOR: always
jobs:
release-plz:
name: Release-plz
runs-on: docker
container:
image:
git.kemitix.net/kemitix/rust:v3.0.0
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Run release-plz release-pr
run: release-plz release-pr --backend gitea --git-token ${{ secrets.FORGEJO_TOKEN }}
env:
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}
- name: Run release-plz release
run: release-plz release --backend gitea --git-token ${{ secrets.FORGEJO_TOKEN }}
env:
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}
docker:
name: Docker image
runs-on: docker
container:
image:
ubuntu:latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Build
run: |
docker build . -t git.kemitix.net/kemitix/rust:latest
docker tag git.kemitix.net/kemitix/rust:latest git.kemitix.net/kemitix/rust:${{ env.GITHUB_REF_NAME }}
- name: Login
run: docker login --username kemitix --password ${{ secrets.FORGE_USER_PASSWORD }} git.kemitix.net
- name: Publish
run: |
docker push git.kemitix.net/kemitix/rust:${{ env.GITHUB_REF_NAME }}
docker push git.kemitix.net/kemitix/rust:latest