chore(deps): Bumping deps #1365
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: Build | |
permissions: | |
actions: none | |
checks: none | |
contents: read | |
deployments: none | |
issues: none | |
packages: none | |
pages: none | |
pull-requests: none | |
repository-projects: none | |
security-events: none | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
env: | |
SCRIPTS_NO_INTERACTIVE: "true" | |
defaults: | |
run: | |
shell: bash | |
jobs: | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
services: | |
redis: | |
image: redis | |
options: >- | |
--health-cmd "redis-cli ping" | |
--health-interval 10s | |
--health-timeout 5s | |
--health-retries 5 | |
ports: | |
- 6379:6379 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Golang | |
uses: actions/setup-go@v5 | |
with: | |
go-version: "^1.23" | |
cache: true | |
- name: Build | |
run: | | |
make config | |
make | |
git --no-pager diff -- ':(exclude)go.sum' && git diff --quiet -- ':(exclude)go.sum' | |
package: | |
name: Docker | |
runs-on: ubuntu-latest | |
env: | |
DOCKER_USER: ${{ secrets.DOCKER_USER }} | |
DOCKER_PASS: ${{ secrets.DOCKER_PASS }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Golang | |
uses: actions/setup-go@v5 | |
with: | |
go-version: "^1.23" | |
cache: true | |
- name: Build | |
if: env.DOCKER_USER && env.DOCKER_PASS | |
env: | |
GO_ARCHS: linux/amd64 linux/arm linux/arm64 darwin/amd64 darwin/arm64 | |
run: | | |
curl --disable --silent --show-error --location --max-time 30 "https://raw.githubusercontent.com/ViBiOh/scripts/main/bootstrap.sh" | bash -s -- "-c" "release.sh" | |
DOCKER_IMAGE="${{ secrets.DOCKER_USER }}/scratch" IMAGE_VERSION="$(make version)" ./scripts/release.sh build | |
- name: Setup Docker | |
if: env.DOCKER_USER && env.DOCKER_PASS | |
uses: docker/setup-buildx-action@v3 | |
- name: Setup DockerHub | |
if: env.DOCKER_USER && env.DOCKER_PASS | |
uses: docker/login-action@v3 | |
with: | |
username: ${{ secrets.DOCKER_USER }} | |
password: ${{ secrets.DOCKER_PASS }} | |
- name: Docker | |
if: env.DOCKER_USER && env.DOCKER_PASS | |
run: | | |
DOCKER_IMAGE="${{ secrets.DOCKER_USER }}/scratch" IMAGE_VERSION="$(make version)" ./scripts/release.sh docker | |
publish: | |
name: Publish | |
runs-on: ubuntu-latest | |
if: github.event_name == 'push' && github.ref == 'refs/heads/main' | |
needs: package | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Publish | |
if: env.DOCKER_USER && env.DOCKER_PASS | |
env: | |
DOCKER_USER: ${{ secrets.DOCKER_USER }} | |
DOCKER_PASS: ${{ secrets.DOCKER_PASS }} | |
run: | | |
curl --disable --silent --show-error --location --max-time 30 "https://raw.githubusercontent.com/ViBiOh/scripts/main/bootstrap.sh" | bash -s -- "-c" "docker_promote.sh" | |
scripts/docker_promote.sh -d "$(make version-date)" "${{ secrets.DOCKER_USER }}/scratch" "$(make version)" |