change actions
Unit Tests with docker compose and cargo / unit-test (push) Successful in 1m41s
Details
Unit Tests with docker compose and cargo / unit-test (push) Successful in 1m41s
Details
This commit is contained in:
parent
7fb94e17db
commit
69199c79a6
|
@ -1,5 +1,5 @@
|
|||
name: Unit Tests with docker compose and cargo
|
||||
on: [push, pull_request]
|
||||
on: [push]
|
||||
|
||||
jobs:
|
||||
unit-test:
|
||||
|
@ -19,4 +19,4 @@ jobs:
|
|||
- name: Get access token from secret
|
||||
run: echo "${{ secrets.MASTODON_SECRET }}" > mastodon-data.toml
|
||||
- name: Run tests on docker
|
||||
run: docker compose down -v && docker compose run bot t
|
||||
run: docker compose down -v && docker compose run bot t
|
||||
|
|
|
@ -1,12 +1,9 @@
|
|||
name: Build image
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
- build
|
||||
tags:
|
||||
- v*
|
||||
|
||||
|
||||
jobs:
|
||||
build:
|
||||
container:
|
||||
|
@ -31,9 +28,9 @@ jobs:
|
|||
git.fai.st/fedi-image-bot/mastodon-image-uploader-bot
|
||||
# generate Docker tags based on the following events/attributes
|
||||
tags: |
|
||||
type=raw,value=latest,enable=${{ github.ref == format('refs/heads/{0}', 'main') }}
|
||||
type=raw,value=latest
|
||||
type=ref,event=branch
|
||||
type=semver,pattern={{raw}}
|
||||
type=semver,pattern={{raw}}
|
||||
- name: Set up Docker Buildx
|
||||
uses: docker/setup-buildx-action@v2
|
||||
- name: Login to fai.st docker registry
|
||||
|
@ -49,4 +46,4 @@ jobs:
|
|||
context: .
|
||||
push: true
|
||||
tags: ${{ steps.meta.outputs.tags }}
|
||||
labels: ${{ steps.meta.outputs.labels }}
|
||||
labels: ${{ steps.meta.outputs.labels }}
|
||||
|
|
Loading…
Reference in New Issue