-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
734fa67
commit 1f9bda6
Showing
2 changed files
with
130 additions
and
157 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,17 @@ | ||
name: Build, test & release | ||
name: Main | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
tags: | ||
- 'v*.*.*' | ||
pull_request: {} | ||
|
||
env: | ||
APP_NAME: samling | ||
IMAGE_NAME: samling | ||
BUILD_CACHE_IMAGE_NAME: samling-cache | ||
|
||
jobs: | ||
clippy: | ||
|
@@ -47,52 +51,149 @@ jobs: | |
steps: | ||
- uses: jacobsvante/cargo-deny-action@v1 | ||
|
||
create-release-pr: | ||
name: Conditionally create release PR | ||
needs: [clippy, cargo-deny, test] | ||
build-docker-image: | ||
name: Build Docker image | ||
runs-on: ubuntu-latest | ||
if: ${{ github.repository == 'hyperkliv/samling' }} | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
- name: Set up Docker Buildx | ||
uses: docker/setup-buildx-action@v3 | ||
- name: Log in to Docker Hub registry | ||
uses: docker/login-action@v3 | ||
with: | ||
username: ${{ secrets.DOCKERHUB_USER }} | ||
password: ${{ secrets.DOCKERHUB_PASSWORD }} | ||
- name: Build and push Docker image | ||
uses: docker/build-push-action@v6 | ||
with: | ||
push: true | ||
tags: ${{ secrets.DOCKERHUB_USER }}/${{ env.IMAGE_NAME }}:${{ github.sha }} | ||
cache-from: | | ||
type=registry,ref=${{ secrets.DOCKERHUB_USER }}/${{ env.BUILD_CACHE_IMAGE_NAME }}:${{ github.ref_name }} | ||
type=registry,ref=${{ secrets.DOCKERHUB_USER }}/${{ env.BUILD_CACHE_IMAGE_NAME }}:main | ||
cache-to: | | ||
type=registry,ref=${{ secrets.DOCKERHUB_USER }}/${{ env.BUILD_CACHE_IMAGE_NAME }}:${{ github.ref_name }},compression=zstd,mode=max | ||
test-docker-image: | ||
name: Test Docker image | ||
runs-on: ubuntu-latest | ||
needs: [build-docker-image] | ||
if: ${{ github.repository == 'hyperkliv/samling' }} | ||
steps: | ||
- name: Log in to Docker Hub registry | ||
uses: docker/login-action@v3 | ||
with: | ||
username: ${{ secrets.DOCKERHUB_USER }} | ||
password: ${{ secrets.DOCKERHUB_PASSWORD }} | ||
- name: Create network | ||
run: docker network create test | ||
- name: Start postgres container | ||
run: | | ||
docker run \ | ||
--name postgres \ | ||
--network test \ | ||
--rm \ | ||
--detach \ | ||
--env POSTGRES_DB=samling \ | ||
--env POSTGRES_USER=samling \ | ||
--env POSTGRES_PASSWORD=samling \ | ||
--hostname postgres \ | ||
postgres:14.5-alpine3.16 | ||
until docker exec postgres pg_isready; do sleep 0.5; done | ||
- name: Start samling container | ||
run: | | ||
docker run \ | ||
--publish 8080:8080 \ | ||
--network test \ | ||
--rm \ | ||
--detach \ | ||
--env LOG_LEVEL=info \ | ||
--env SECRET=abc123 \ | ||
--env DB_NAME=samling \ | ||
--env DB_HOST=postgres \ | ||
--env DB_USER=samling \ | ||
--env DB_PASSWORD=samling \ | ||
--env DB_AUTO_MIGRATE=true \ | ||
--env CLOUDFLARE_ACCOUNT_ID=abc \ | ||
--env CLOUDFLARE_TOKEN=123 \ | ||
${{ secrets.DOCKERHUB_USER }}/${{ env.IMAGE_NAME }}:${{ github.sha }} | ||
sleep 1 | ||
- name: Check /api/readyz response | ||
run: | | ||
curl http://127.0.0.1:8080/api/readyz > output.json | ||
jq . output.json | ||
[[ $(jq .ok output.json) == true ]] | ||
- name: Notify hyperkliv/www-samling-io | ||
uses: peter-evans/repository-dispatch@v3 | ||
with: | ||
token: ${{ secrets.REPOSITORY_DISPATCH_TOKEN }} | ||
repository: hyperkliv/www-samling-io | ||
event-type: new-samling-docker-image | ||
client-payload: '{"sha": "${{ github.sha }}"}' | ||
|
||
version-tag-docker-image: | ||
name: Add version tags to Docker image | ||
needs: [test-docker-image] | ||
runs-on: ubuntu-latest | ||
if: ${{ github.ref == 'refs/heads/main' }} | ||
permissions: | ||
contents: write | ||
contents: read | ||
pull-requests: write | ||
issues: read | ||
repository-projects: read | ||
if: ${{ github.repository == 'hyperkliv/samling' && github.ref_type == 'tag' }} | ||
steps: | ||
- name: Create a release Pull Request | ||
uses: googleapis/release-please-action@v4 | ||
- name: Get the version | ||
id: version | ||
run: echo version=${GITHUB_REF_NAME/v/} >> $GITHUB_OUTPUT | ||
shell: bash | ||
- uses: jacobsvante/[email protected] | ||
if: ${{ steps.version.outputs.version != '' }} | ||
with: | ||
skip-github-release: true | ||
version: ${{ steps.version.outputs.version }} | ||
image: ${{ secrets.DOCKERHUB_USER }}/${{ env.IMAGE_NAME }} | ||
username: ${{ secrets.DOCKERHUB_USER }} | ||
password: ${{ secrets.DOCKERHUB_PASSWORD }} | ||
- name: Notify hyperkliv/www-samling-io | ||
uses: peter-evans/repository-dispatch@v2 | ||
if: ${{ steps.version.outputs.version != '' }} | ||
with: | ||
token: ${{ secrets.REPOSITORY_DISPATCH_TOKEN }} | ||
repository: hyperkliv/www-samling-io | ||
event-type: new-samling-docker-image | ||
client-payload: '{"sha": "${{ github.sha }}", "version": "${{ steps.version.outputs.version }}" }' | ||
|
||
publish: | ||
name: Conditionally publish to crates.io | ||
release-please: | ||
needs: [clippy, cargo-deny, test] | ||
runs-on: ubuntu-latest | ||
if: ${{ github.ref == 'refs/heads/main' }} | ||
if: ${{ github.repository == 'hyperkliv/samling' && github.ref == 'refs/heads/main' }} | ||
permissions: | ||
contents: write | ||
pull-requests: write | ||
env: | ||
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }} | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Make cargo command available | ||
uses: dtolnay/rust-toolchain@stable | ||
|
||
- uses: Swatinem/rust-cache@v2 | ||
|
||
- name: Ensure publishable | ||
run: cargo publish --dry-run | ||
|
||
- uses: googleapis/release-please-action@v4 | ||
id: release | ||
with: | ||
skip-github-pull-request: true | ||
token: ${{ secrets.EVENT_TRIGGERING_GITHUB_TOKEN }} | ||
|
||
- name: Tag major and minor versions in Git | ||
if: ${{ steps.release.outputs.release_created }} | ||
uses: jacobsvante/tag-major-minor-action@v0 | ||
uses: jacobsvante/tag-major-minor-action@v0.1 | ||
with: | ||
major: ${{ steps.release.outputs.major }} | ||
minor: ${{ steps.release.outputs.minor }} | ||
|
||
- if: ${{ steps.release.outputs.release_created }} | ||
run: cargo publish | ||
publish: | ||
name: Publish to crates.io | ||
runs-on: ubuntu-latest | ||
if: ${{ github.repository == 'hyperkliv/samling' && github.ref_type == 'tag' }} | ||
permissions: | ||
contents: write | ||
pull-requests: write | ||
env: | ||
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }} | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: dtolnay/rust-toolchain@stable | ||
- uses: Swatinem/rust-cache@v2 | ||
- run: cargo publish |
This file was deleted.
Oops, something went wrong.