diff --git a/.gitea/workflows/container-build.yaml b/.gitea/workflows/container-build.yaml index 54eea9d..1d111e8 100644 --- a/.gitea/workflows/container-build.yaml +++ b/.gitea/workflows/container-build.yaml @@ -8,13 +8,18 @@ on: jobs: build: container: - #image: node:18.17.0-alpine3.17 image: node:latest runs-on: [arm64] steps: - - run: export - - run: ls - name: Check out repository code uses: actions/checkout@v3 - - run: echo "Testing" + - name: Set up QEMU + uses: docker/setup-qemu-action@v2 + - name: Set Docker Buildx + uses: docker/setup-buildx-action@v2 + - name: Build image + uses: docker/build-push-action@v4 + with: + tags: athens-school/s3-mounter +