Skip to content

Commit

Permalink
Prep for release 0.1.0
Browse files Browse the repository at this point in the history
Add CHANGELOG.md
Build docker image only on tags
  • Loading branch information
GamePad64 committed Dec 1, 2024
1 parent 3b5a448 commit 235fa0f
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/docker-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,7 @@ name: Docker Image CI

on:
push:
branches: [ "main" ]
tags: [ "*" ]
tags: [ "v*" ]

jobs:
build:
Expand Down Expand Up @@ -40,7 +39,9 @@ jobs:
push: true
tags: |
notificohq/${{ matrix.image }}:latest
notificohq/${{ matrix.image }}:${{ github.ref_name }}
ghcr.io/notificohq/${{ matrix.image }}:latest
ghcr.io/notificohq/${{ matrix.image }}:${{ github.ref_name }}
context: .
file: container/${{ matrix.image }}.dockerfile
cache-from: type=gha
Expand Down
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# Changelog

All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## Unreleased

## 0.1.0 - 2024-12-02

### Added

- First release with a fixed tag
- Webhook integration
- Multiple recipients
- `core.set_recipients` step and `core` plugin

0 comments on commit 235fa0f

Please sign in to comment.