Skip to content

Commit

Permalink
Release CI
Browse files Browse the repository at this point in the history
  • Loading branch information
swissmanu committed Oct 23, 2023
1 parent 9628d50 commit 7a64850
Show file tree
Hide file tree
Showing 2 changed files with 58 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/workflows/quality-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ on:
- '**'
pull_request:
- '**'
workflow_call:

env:
DENO_VERSION: 1.37.2
Expand Down
57 changes: 57 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
name: Quality Checks

on:
push:
tags:
- "v*"

env:
DENO_VERSION: 1.37.2

jobs:
release-quality-checks:
uses: swissmanu/litecom2mqtt/.github/workflows/quality-checks.yml@main

release:
runs-on: ubuntu-latest
needs: [release-quality-checks]

steps:
- uses: actions/checkout@v3
- name: Use Deno Version ${{ env.DENO_VERSION }}
uses: denolib/setup-deno@v2
with:
deno-version: ${{ env.DENO_VERSION }}

- name: Build
run: |
deno cache src/deps.ts
deno cache src/main.ts
- name: Get Version from Git Tag
id: get_version
uses: battila7/get-version-action@v2

- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
id: buildx
uses: docker/setup-buildx-action@v3

- name: Login to GitHub Container Registry
uses: docker/login-action@v1
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ github.token }}

- name: Build and Push Docker Images
id: docker_build
uses: docker/build-push-action@v5
with:
context: .
platforms: linux/arm/arm64,linux/amd64
push: true
# :latest can be dangerous when republishing old version... But it's okay for now.
tags: |
ghcr.io/${{ github.repository }}/litecom2mqtt:latest
ghcr.io/${{ github.repository }}/litecom2mqtt:${{ steps.get_version.outputs.version }}

0 comments on commit 7a64850

Please sign in to comment.