Compare commits
7 Commits
Author | SHA1 | Date | |
---|---|---|---|
7e2a9caaf3 | |||
622eedb7c0 | |||
a02480ca07 | |||
7981877152 | |||
0121c607be | |||
34853ccd5d | |||
c4d44f4299 |
@ -24,7 +24,7 @@ jobs:
|
||||
no-fail: true
|
||||
|
||||
- name: SonarQube Scan
|
||||
uses: SonarSource/sonarqube-scan-action@v4.2.1
|
||||
uses: SonarSource/sonarqube-scan-action@v5.2.0
|
||||
env:
|
||||
SONAR_HOST_URL: ${{ secrets.SONARQUBE_HOST_URL }}
|
||||
SONAR_TOKEN: ${{ secrets.SONARQUBE_TOKEN }}
|
||||
|
@ -3,32 +3,30 @@ on:
|
||||
workflow_dispatch:
|
||||
push:
|
||||
branches:
|
||||
- master
|
||||
- main
|
||||
# schedule:
|
||||
# - cron: '0 9 * * 0'
|
||||
|
||||
jobs:
|
||||
# test:
|
||||
# name: Test
|
||||
# uses: ./.gitea/workflows/ci.yml@main
|
||||
|
||||
tag:
|
||||
name: Tag release
|
||||
uses: https://git.tainton.uk/actions/gha-workflows/.gitea/workflows/release-with-tag.yaml@main
|
||||
|
||||
create_release:
|
||||
name: Create Release
|
||||
# needs: test
|
||||
uses: https://git.tainton.uk/actions/gha-workflows/.gitea/workflows/create-release.yml@main
|
||||
needs: tag
|
||||
uses: https://git.tainton.uk/actions/gha-workflows/.gitea/workflows/create-release-preexisting-tag.yaml@main
|
||||
with:
|
||||
tag: ${{ needs.tag.outputs.tag_name }}
|
||||
body: ${{ needs.tag.outputs.changelog }}
|
||||
secrets:
|
||||
ACTIONS_TOKEN: ${{ secrets.ACTIONS_TOKEN }}
|
||||
|
||||
print_release:
|
||||
name: Print Release
|
||||
runs-on: ubuntu-latest
|
||||
needs: create_release
|
||||
steps:
|
||||
- run: echo "Created release ${{ needs.create_release.outputs.release_name }}."
|
||||
|
||||
publish:
|
||||
create_docker:
|
||||
name: Publish Docker Images
|
||||
runs-on: ubuntu-latest
|
||||
needs: create_release
|
||||
needs: [tag, create_release]
|
||||
steps:
|
||||
- name: Update Docker configuration
|
||||
continue-on-error: true
|
||||
@ -50,7 +48,7 @@ jobs:
|
||||
uses: actions/checkout@v4.2.2
|
||||
with:
|
||||
fetch-depth: 0
|
||||
ref: ${{ needs.create_release.outputs.release_name }}
|
||||
ref: ${{ needs.tag.outputs.tag_name }}
|
||||
|
||||
- name: Set up Docker Buildx
|
||||
uses: docker/setup-buildx-action@v3
|
||||
@ -73,7 +71,7 @@ jobs:
|
||||
id: meta
|
||||
uses: docker/metadata-action@v5
|
||||
with:
|
||||
tags: type=semver,pattern=v{{version}},value=${{ needs.create_release.outputs.release_name }}
|
||||
tags: type=semver,pattern=v{{version}},value=${{ needs.tag.outputs.tag_name }}
|
||||
images: |
|
||||
ghcr.io/${{ vars.GHCR_USERNAME }}/${{ steps.split.outputs.repo }}
|
||||
${{ vars.PACKAGES_REGISTRY_URL }}/${{ gitea.repository }}
|
||||
|
@ -1,4 +1,4 @@
|
||||
FROM alpine:3.21 AS build
|
||||
FROM alpine:3.22 AS build
|
||||
LABEL maintainer="Luke Tainton <luke@tainton.uk>"
|
||||
|
||||
FROM build AS webproc
|
||||
@ -9,7 +9,7 @@ RUN apk add --no-cache curl && \
|
||||
chmod +x /usr/local/bin/webproc
|
||||
|
||||
FROM build AS dnsmasq
|
||||
RUN apk --no-cache add dnsmasq=2.90-r3
|
||||
RUN apk --no-cache add dnsmasq=2.91-r0
|
||||
COPY --from=webproc /usr/local/bin/webproc /usr/local/bin/webproc
|
||||
ENTRYPOINT ["webproc","-o","restart","-c","/etc/dnsmasq.conf","-c","/etc/hosts","-c","/etc/resolv.conf","--","dnsmasq","-k","--log-facility=-"]
|
||||
EXPOSE 53/udp 8080/tcp
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"assignAutomerge": true,
|
||||
"assigneesFromCodeOwners": true,
|
||||
"assignAutomerge": false,
|
||||
"assigneesFromCodeOwners": false,
|
||||
"dependencyDashboardAutoclose": true,
|
||||
"extends": ["config:recommended", "docker:enableMajor"],
|
||||
"ignorePaths": ["**/.archive/**"],
|
||||
|
Reference in New Issue
Block a user