mirror of https://github.com/go-gitea/gitea.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
129 lines
4.9 KiB
129 lines
4.9 KiB
name: release-nightly |
|
|
|
on: |
|
push: |
|
branches: [main, release/v*] |
|
|
|
concurrency: |
|
group: ${{ github.workflow }}-${{ github.ref }} |
|
cancel-in-progress: true |
|
|
|
jobs: |
|
nightly-binary: |
|
runs-on: namespace-profile-gitea-release-binary |
|
permissions: |
|
contents: read |
|
steps: |
|
- uses: actions/checkout@v6 |
|
# fetch all commits instead of only the last as some branches are long lived and could have many between versions |
|
# fetch all tags to ensure that "git describe" reports expected Gitea version, eg. v1.21.0-dev-1-g1234567 |
|
- run: git fetch --unshallow --quiet --tags --force |
|
- uses: actions/setup-go@v6 |
|
with: |
|
go-version-file: go.mod |
|
check-latest: true |
|
- uses: pnpm/action-setup@v4 |
|
- uses: actions/setup-node@v5 |
|
with: |
|
node-version: 24 |
|
- run: make deps-frontend deps-backend |
|
# xgo build |
|
- run: make release |
|
env: |
|
TAGS: bindata sqlite sqlite_unlock_notify |
|
- name: import gpg key |
|
id: import_gpg |
|
uses: crazy-max/ghaction-import-gpg@v6 |
|
with: |
|
gpg_private_key: ${{ secrets.GPGSIGN_KEY }} |
|
passphrase: ${{ secrets.GPGSIGN_PASSPHRASE }} |
|
- name: sign binaries |
|
run: | |
|
for f in dist/release/*; do |
|
echo '${{ secrets.GPGSIGN_PASSPHRASE }}' | gpg --pinentry-mode loopback --passphrase-fd 0 --batch --yes --detach-sign -u ${{ steps.import_gpg.outputs.fingerprint }} --output "$f.asc" "$f" |
|
done |
|
# clean branch name to get the folder name in S3 |
|
- name: Get cleaned branch name |
|
id: clean_name |
|
run: | |
|
REF_NAME=$(echo "${{ github.ref }}" | sed -e 's/refs\/heads\///' -e 's/refs\/tags\///' -e 's/release\/v//') |
|
echo "Cleaned name is ${REF_NAME}" |
|
echo "branch=${REF_NAME}-nightly" >> "$GITHUB_OUTPUT" |
|
- name: configure aws |
|
uses: aws-actions/configure-aws-credentials@v4 |
|
with: |
|
aws-region: ${{ secrets.AWS_REGION }} |
|
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }} |
|
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }} |
|
- name: upload binaries to s3 |
|
run: | |
|
aws s3 sync dist/release s3://${{ secrets.AWS_S3_BUCKET }}/gitea/${{ steps.clean_name.outputs.branch }} --no-progress |
|
|
|
nightly-container: |
|
runs-on: namespace-profile-gitea-release-docker |
|
permissions: |
|
contents: read |
|
packages: write # to publish to ghcr.io |
|
steps: |
|
- uses: actions/checkout@v6 |
|
# fetch all commits instead of only the last as some branches are long lived and could have many between versions |
|
# fetch all tags to ensure that "git describe" reports expected Gitea version, eg. v1.21.0-dev-1-g1234567 |
|
- run: git fetch --unshallow --quiet --tags --force |
|
- uses: docker/setup-qemu-action@v3 |
|
- uses: docker/setup-buildx-action@v3 |
|
- name: Get cleaned branch name |
|
id: clean_name |
|
run: | |
|
REF_NAME=$(echo "${{ github.ref }}" | sed -e 's/refs\/heads\///' -e 's/refs\/tags\///' -e 's/release\/v//') |
|
echo "branch=${REF_NAME}-nightly" >> "$GITHUB_OUTPUT" |
|
- uses: docker/metadata-action@v5 |
|
id: meta |
|
with: |
|
images: |- |
|
gitea/gitea |
|
ghcr.io/go-gitea/gitea |
|
tags: | |
|
type=raw,value=${{ steps.clean_name.outputs.branch }} |
|
annotations: | |
|
org.opencontainers.image.authors="maintainers@gitea.io" |
|
- uses: docker/metadata-action@v5 |
|
id: meta_rootless |
|
with: |
|
images: |- |
|
gitea/gitea |
|
ghcr.io/go-gitea/gitea |
|
# each tag below will have the suffix of -rootless |
|
flavor: | |
|
suffix=-rootless |
|
tags: | |
|
type=raw,value=${{ steps.clean_name.outputs.branch }} |
|
annotations: | |
|
org.opencontainers.image.authors="maintainers@gitea.io" |
|
- name: Login to Docker Hub |
|
uses: docker/login-action@v3 |
|
with: |
|
username: ${{ secrets.DOCKERHUB_USERNAME }} |
|
password: ${{ secrets.DOCKERHUB_TOKEN }} |
|
- name: Login to GHCR using PAT |
|
uses: docker/login-action@v3 |
|
with: |
|
registry: ghcr.io |
|
username: ${{ github.repository_owner }} |
|
password: ${{ secrets.GITHUB_TOKEN }} |
|
- name: build regular docker image |
|
uses: docker/build-push-action@v5 |
|
with: |
|
context: . |
|
platforms: linux/amd64,linux/arm64,linux/riscv64 |
|
push: true |
|
tags: ${{ steps.meta.outputs.tags }} |
|
annotations: ${{ steps.meta.outputs.annotations }} |
|
- name: build rootless docker image |
|
uses: docker/build-push-action@v5 |
|
with: |
|
context: . |
|
platforms: linux/amd64,linux/arm64,linux/riscv64 |
|
push: true |
|
file: Dockerfile.rootless |
|
tags: ${{ steps.meta_rootless.outputs.tags }} |
|
annotations: ${{ steps.meta_rootless.outputs.annotations }}
|
|
|