name: Gitea Actions Demo run-name: ${{ gitea.actor }} is testing out Gitea Actions on: [push, pull_request] jobs: build: runs-on: ubuntu-latest container: image: catthehacker/ubuntu:act-latest env: REGISTRY: git.ivanli.cc IMAGE_NAME: ${{ github.repository }} steps: - name: Check out repository code uses: actions/checkout@v3 - name: Get Dependencies Index Hash uses: https://github.com/KEINOS/gh-action-hash-for-cache@main id: hash-dependencies-index with: path: '**/Cargo.lock' - name: Restore Dependencies id: restore-dependencies uses: https://github.com/actions/cache@v3 with: path: | ~/.cargo/bin/ ~/.cargo/registry/index/ ~/.cargo/registry/cache/ ~/.cargo/git/db/ target/ key: ${{ runner.os }}-cargo-${{ steps.hash-dependencies-index.outputs.hash }} - name: Install Rust uses: https://github.com/actions-rs/toolchain@v1 with: toolchain: stable override: true target: x86_64-unknown-linux-musl - name: Get Commit Tag id: tag uses: https://github.com/Maxyme/get-release-or-tag@v2 - name: Run build uses: https://github.com/actions-rs/cargo@v1 with: command: build args: --target x86_64-unknown-linux-musl --release - name: Log in to the Container registry uses: https://github.com/docker/login-action@v2 with: registry: ${{ env.REGISTRY }} username: ivan password: 5a136cfb23816f0772ac8fc59ba4eec554fe9591 - name: Extract metadata (tags, labels) for Docker id: meta uses: https://github.com/docker/metadata-action@v4 with: registry: ${{ env.REGISTRY }} images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }} - name: Build and push Docker image uses: docker/build-push-action@v4 env: ACTIONS_RUNTIME_TOKEN: '' with: context: . push: true tags: ${{ steps.meta.outputs.tags }} labels: ${{ steps.meta.outputs.labels }}