Fix YAML syntax error

This commit is contained in:
Geometrically 2020-12-31 21:47:17 -07:00
parent b4ea11e55e
commit ee8d65977d
No known key found for this signature in database
GPG Key ID: 90C056FDC8FC9FF0
2 changed files with 11 additions and 14 deletions

View File

@ -7,7 +7,6 @@ on:
env: env:
CARGO_TERM_COLOR: always CARGO_TERM_COLOR: always
SQLX_OFFLINE: true SQLX_OFFLINE: true
jobs: jobs:
build: build:
runs-on: ubuntu-latest runs-on: ubuntu-latest

View File

@ -13,11 +13,9 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
- - name: Set up Docker Buildx
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1 uses: docker/setup-buildx-action@v1
- - name: Cache Docker layers
name: Cache Docker layers
uses: actions/cache@v2 uses: actions/cache@v2
with: with:
path: /tmp/.buildx-cache path: /tmp/.buildx-cache
@ -25,12 +23,12 @@ jobs:
restore-keys: | restore-keys: |
${{ runner.os }}-buildx- ${{ runner.os }}-buildx-
- name: Build Docker images - name: Build Docker images
uses: docker/build-push-action@v1 uses: docker/build-push-action@v1
with: with:
push: false push: false
username: ${{ github.actor }} username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }} password: ${{ secrets.GITHUB_TOKEN }}
registry: docker.pkg.github.com registry: docker.pkg.github.com
repository: modrinth/labrinth/labrinth repository: modrinth/labrinth/labrinth
tag_with_ref: true tag_with_ref: true
tag_with_sha: true tag_with_sha: true