diff --git a/.forgejo/workflows/test.yml b/.forgejo/workflows/test.yml index 7d3ee34..5139252 100644 --- a/.forgejo/workflows/test.yml +++ b/.forgejo/workflows/test.yml @@ -6,4 +6,16 @@ jobs: steps: - uses: actions/checkout@v4 - uses: actions/rust-toolchain@stable - - run: cargo test --all-features \ No newline at end of file + - run: cargo test --all-features + docker: + name: docker build + runs-on: docker + steps: + - uses: docker/login-action@v3 + with: + username: ${{ secrets.DOCKERHUB_USERNAME}} + password: ${{ secrets.DOCKERHUB_TOKEN}} + - uses: docker/build-push-action@v5 + with: + push: true + tags: karcsesz/fingerlink:latest \ No newline at end of file