Switch to GHCR containers (#1576)

Co-authored-by: Leo <lenemter@gmail.com>
This commit is contained in:
David Hewitt 2023-03-18 18:15:59 +00:00 committed by GitHub
parent d717859719
commit c789d9118b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 13 additions and 9 deletions

View File

@ -2,13 +2,13 @@ name: Gettext Updates
on:
push:
branches: master
branches: [master]
jobs:
build:
runs-on: ubuntu-22.04
container:
image: elementary/docker:next-unstable
image: ghcr.io/elementary/docker:next-unstable
steps:
- name: Install git

View File

@ -11,10 +11,14 @@ jobs:
build:
runs-on: ubuntu-22.04
strategy:
fail-fast: false
matrix:
version: [stable, unstable, development-target]
container:
image: elementary/docker:next-unstable
image: ghcr.io/elementary/docker:${{ matrix.version }}
steps:
- uses: actions/checkout@v3
- name: Install Dependencies
@ -32,10 +36,10 @@ jobs:
lint:
runs-on: ubuntu-latest
container:
image: valalang/lint
steps:
- uses: actions/checkout@v3
- name: Lint

View File

@ -2,8 +2,8 @@ name: Release
on:
pull_request:
branches: master
types: closed
branches: [master]
types: [closed]
jobs:
release:
runs-on: ubuntu-22.04