Semaphore/.github/workflows/release.yml

128 lines
3.5 KiB
YAML
Raw Permalink Normal View History

2022-06-20 18:30:33 +02:00
name: Release
'on':
2022-06-20 18:30:33 +02:00
push:
2022-06-21 12:38:10 +02:00
tags:
2023-09-23 18:12:40 +02:00
- 'v[0-9]+.[0-9]+.[0-9]+'
2022-06-20 18:30:33 +02:00
jobs:
2022-10-24 07:10:11 +02:00
release:
runs-on: ubuntu-latest
2022-10-24 07:10:11 +02:00
steps:
- name: Checkout source
uses: actions/checkout@v4
2022-10-24 07:10:11 +02:00
- name: Setup golang
uses: actions/setup-go@v5
with:
go-version: '^1.21.0'
2022-10-24 07:10:11 +02:00
- name: Setup nodejs
2024-05-02 22:55:27 +02:00
uses: actions/setup-node@v4
with:
node-version: '16'
2024-04-28 15:06:19 +02:00
cache: 'npm'
cache-dependency-path: web/package-lock.json
2022-10-24 07:10:11 +02:00
- name: Install go-task
run: |
go install github.com/go-task/task/v3/cmd/task@latest
2022-10-24 07:10:11 +02:00
- name: Install rpm
run: |
sudo apt update && sudo apt-get install rpm
2022-10-24 07:10:11 +02:00
- name: Install deps
run: |
task deps
2022-10-24 07:10:11 +02:00
- name: Import gnupg
run: |
echo "${{ secrets.GPG_KEY }}" | tr " " "\n" | base64 -d | gpg --import --batch
2022-10-24 07:10:11 +02:00
gpg --sign -u "58A7 CC3D 8A9C A2E5 BB5C 141D 4064 23EA F814 63CA" --pinentry-mode loopback --yes --batch --passphrase "${{ secrets.GPG_PASS }}" --output unlock.sig --detach-sign README.md
rm -f unlock.sig
- name: Reset repo
run: |
git reset --hard
2022-06-29 20:56:29 +02:00
- name: Run release
run: |
GITHUB_TOKEN=${{ secrets.GH_TOKEN }} task release:prod
2022-06-29 20:56:29 +02:00
deploy-prod:
runs-on: ubuntu-latest
2024-05-04 01:34:42 +02:00
if: github.repository_owner == 'semaphoreui'
2022-06-29 20:56:29 +02:00
steps:
- name: Checkout source
uses: actions/checkout@v4
2022-06-29 20:56:29 +02:00
- name: Setup qemu
id: qemu
uses: docker/setup-qemu-action@v3
2022-10-23 11:48:52 +02:00
- name: Setup buildx
id: buildx
uses: docker/setup-buildx-action@v3
2022-10-23 11:48:52 +02:00
- name: Hub login
uses: docker/login-action@v3
if: github.event_name != 'pull_request'
2022-10-23 11:48:52 +02:00
with:
username: ${{ secrets.DOCKER_USER }}
password: ${{ secrets.DOCKER_PASS }}
- name: Server meta
id: server
uses: docker/metadata-action@v5
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
images: |
semaphoreui/semaphore
labels: |
org.opencontainers.image.vendor=SemaphoreUI
2024-11-19 11:53:36 +01:00
maintainer=Semaphore UI <support@semaphoreui.com>
tags: |
2024-05-27 23:00:47 +02:00
type=raw,value=${{ github.ref_name }}
flavor: |
latest=true
- name: Server build
uses: docker/build-push-action@v5
2022-10-23 11:48:52 +02:00
with:
builder: ${{ steps.buildx.outputs.name }}
2022-10-23 11:48:52 +02:00
context: .
file: deployment/docker/server/Dockerfile
platforms: linux/amd64,linux/arm64,linux/arm/v6
push: ${{ github.event_name != 'pull_request' }}
labels: ${{ steps.server.outputs.labels }}
tags: ${{ steps.server.outputs.tags }}
2023-09-13 14:09:29 +02:00
- name: Runner meta
id: runner
uses: docker/metadata-action@v5
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
images: |
semaphoreui/runner
labels: |
org.opencontainers.image.vendor=SemaphoreUI
2024-11-19 11:53:36 +01:00
maintainer=Semaphore UI <support@semaphoreui.com>
tags: |
2024-05-27 23:00:47 +02:00
type=raw,value=${{ github.ref_name }}
flavor: |
latest=true
- name: Runner build
uses: docker/build-push-action@v5
2023-09-13 14:09:29 +02:00
with:
builder: ${{ steps.buildx.outputs.name }}
2023-09-13 14:09:29 +02:00
context: .
file: deployment/docker/runner/Dockerfile
2024-05-20 17:06:06 +02:00
platforms: linux/amd64,linux/arm64 #,linux/arm/v6
push: ${{ github.event_name != 'pull_request' }}
labels: ${{ steps.runner.outputs.labels }}
tags: ${{ steps.runner.outputs.tags }}