Skip to content

Commit

Permalink
Merge tag 'v9.2.0' of https://github.com/nyaruka/rp-archiver into upd…
Browse files Browse the repository at this point in the history
…ate/9.2.0

 * Update dependencies
 * Test against PostgreSQL 15
  • Loading branch information
rasoro committed Dec 17, 2024
2 parents d79d76d + 7eea020 commit 1b4c8bd
Show file tree
Hide file tree
Showing 16 changed files with 379 additions and 336 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
name: CI
on: [push, pull_request]
env:
go-version: "1.21.x"
go-version: "1.22.x"
jobs:
test:
name: Test
runs-on: ubuntu-latest

services:
postgres:
image: postgis/postgis:14-3.3-alpine
image: postgres:15-alpine
env:
POSTGRES_DB: archiver_test
POSTGRES_USER: archiver_test
Expand All @@ -20,10 +20,10 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Install Go
uses: actions/setup-go@v3
uses: actions/setup-go@v5
with:
go-version: ${{ env.go-version }}

Expand All @@ -35,7 +35,7 @@ jobs:

- name: Upload coverage
if: success()
uses: codecov/codecov-action@v3
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
fail_ci_if_error: true
Expand All @@ -47,17 +47,17 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Install Go
uses: actions/setup-go@v3
uses: actions/setup-go@v5
with:
go-version: ${{ env.go-version }}

- name: Publish release
uses: goreleaser/goreleaser-action@v4
uses: goreleaser/goreleaser-action@v6
with:
args: release --clean
env:
Expand Down
20 changes: 20 additions & 0 deletions .goreleaser.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
version: 2
builds:
- main: ./cmd/rp-archiver/main.go
binary: rp-archiver
goos:
- darwin
- linux
goarch:
- amd64
- arm64

changelog:
filters:
exclude:
- "^Update CHANGELOG.md"

archives:
- files:
- LICENSE
- README.md
20 changes: 20 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,23 @@
v9.2.0 (2024-07-17)
-------------------------
* Update dependencies
* Test against PostgreSQL 15

v9.1.2 (2024-06-04)
-------------------------
* Update deps
* Use std lib errors

v9.1.1 (2024-04-25)
-------------------------
* Add support for status=READ

v9.1.0 (2024-04-12)
-------------------------
* Remove flows_flowrun.submitted_by
* Replace logrus with slog
* Update to go 1.22 and update deps

v9.0.0 (2024-01-05)
-------------------------
* Update dependencies
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Archiver
# 🗜️ Archiver

[![Build Status](https://github.com/nyaruka/rp-archiver/workflows/CI/badge.svg)](https://github.com/nyaruka/rp-archiver/actions?query=workflow%3ACI)
[![codecov](https://codecov.io/gh/nyaruka/rp-archiver/branch/main/graph/badge.svg)](https://codecov.io/gh/nyaruka/rp-archiver)
Expand Down
Loading

0 comments on commit 1b4c8bd

Please sign in to comment.