mirror of
https://github.com/AuxXxilium/arv-v-dsm.git
synced 2024-11-24 07:20:57 +07:00
110 lines
3.2 KiB
YAML
110 lines
3.2 KiB
YAML
name: Build
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
paths-ignore:
|
|
- '**/*.md'
|
|
- '.gitignore'
|
|
- '.dockerignore'
|
|
- '.github/**'
|
|
- '.github/workflows/**'
|
|
|
|
jobs:
|
|
shellcheck:
|
|
name: Check
|
|
uses: ./.github/workflows/check.yml
|
|
build:
|
|
name: Build
|
|
needs: shellcheck
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
packages: write
|
|
contents: read
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
-
|
|
name: Build the Docker image
|
|
run: |
|
|
docker build . \
|
|
--file Dockerfile \
|
|
--build-arg "VERSION_ARG=${{ vars.MAJOR }}.${{ vars.MINOR }}" \
|
|
--build-arg "BUILD_ARG=${GITHUB_RUN_ID}" \
|
|
--build-arg "DATE_ARG=${{ github.event.repository.updated_at }}" \
|
|
--label "build=${GITHUB_RUN_ID}" \
|
|
--label "version=${{ vars.MAJOR }}.${{ vars.MINOR }}" \
|
|
--tag "${{ github.repository }}:latest" \
|
|
--tag "${{ github.repository }}:${{ vars.MAJOR }}.${{ vars.MINOR }}" \
|
|
--tag "ghcr.io/${{ github.repository }}:latest" \
|
|
--tag "ghcr.io/${{ github.repository }}:${{ vars.MAJOR }}.${{ vars.MINOR }}"
|
|
-
|
|
name: Login to Docker Hub
|
|
uses: docker/login-action@v2
|
|
with:
|
|
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
|
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
|
-
|
|
name: Push to DockerHub
|
|
run: |
|
|
docker push "${{ github.repository }}:${{ vars.MAJOR }}.${{ vars.MINOR }}" &&\
|
|
docker push "${{ github.repository }}:latest"
|
|
-
|
|
name: Login to GitHub Container Registry
|
|
uses: docker/login-action@v2
|
|
with:
|
|
registry: ghcr.io
|
|
username: ${{ github.actor }}
|
|
password: ${{ secrets.GITHUB_TOKEN }}
|
|
-
|
|
name: Push to Github Container Registry
|
|
run: |
|
|
docker push "ghcr.io/${{ github.repository }}:${{ vars.MAJOR }}.${{ vars.MINOR }}" && \
|
|
docker push "ghcr.io/${{ github.repository }}:latest"
|
|
|
|
release:
|
|
needs: build
|
|
name: Release
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
contents: write
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
-
|
|
name: Create a release
|
|
uses: kroese/github-release@v5
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.REPO_ACCESS_TOKEN }}
|
|
with:
|
|
tag: "v${{ vars.MAJOR }}.${{ vars.MINOR }}"
|
|
title: "v${{ vars.MAJOR }}.${{ vars.MINOR }}"
|
|
body: "Release v${{ vars.MAJOR }}.${{ vars.MINOR }}"
|
|
-
|
|
name: Increment minor version
|
|
run: |
|
|
echo "NEW_MINOR=$((${{ vars.MINOR }}+1))" >> $GITHUB_ENV
|
|
-
|
|
name: Update minor version variable
|
|
uses: kroese/set-variable@v4
|
|
with:
|
|
name: 'MINOR'
|
|
value: ${{ env.NEW_MINOR }}
|
|
token: ${{ secrets.REPO_ACCESS_TOKEN }}
|
|
|
|
mirror:
|
|
name: Mirror
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
contents: read
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
with:
|
|
fetch-depth: 0
|
|
-
|
|
name: Push to Gitlab mirror
|
|
uses: wangchucheng/git-repo-sync@v0.1.0
|
|
with:
|
|
target-url: ${{ secrets.GITLAB_URL }}
|
|
target-token: ${{ secrets.GITLAB_TOKEN }}
|
|
target-username: ${{ secrets.GITLAB_USERNAME }}
|