Try
Some checks failed
deploy / docker (push) Failing after 1m13s

This commit is contained in:
Florian RICHER 2023-11-21 19:54:47 +01:00
parent 4fc34dacaa
commit 1890b12806

View file

@ -5,26 +5,28 @@ on:
branches: [ main ] branches: [ main ]
jobs: jobs:
my-job: docker:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- name: Setup Rust - name: Checkout
uses: https://github.com/actions-rs/toolchain@v1 uses: https://github.com/actions/checkout@v3
- name: Set up QEMU
uses: https://github.com/docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: https://github.com/docker/setup-buildx-action@v3
- name: Login to Docker Hub
uses: https://github.com/docker/login-action@v3
with: with:
toolchain: nightly registry: gitea.mrdev023.fr
override: true username: ${{ secrets.GITEA_USERNAME }}
components: rustfmt password: ${{ secrets.GITEA_PASSWORD }}
- name: Add wasm32-unknown-unknown - name: Build and push
run: rustup target add wasm32-unknown-unknown uses: https://github.com/docker/build-push-action@v5
- name: Add cargo-letpos
run: cargo install -j 1 cargo-leptos
- name: Install Node.js
uses: https://github.com/actions/setup-node@v4
with: with:
node-version: 19 context: .
push: true
- name: my-step tags: gitea.mrdev023.fr/mrdev023/portfolio:latest
run: echo "Hello World 2!"