Skip to content

Commit

Permalink
Switch to GHCR containers (#642)
Browse files Browse the repository at this point in the history
  • Loading branch information
davidmhewitt authored Mar 16, 2023
1 parent a85360c commit e28a0c8
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 10 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/gettext.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
16 changes: 10 additions & 6 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:unstable
image: ghcr.io/elementary/docker:${{ matrix.version }}

steps:
- uses: actions/checkout@v3
- name: Install Dependencies
Expand All @@ -31,14 +35,14 @@ jobs:
lint:

runs-on: ubuntu-latest

container:
image: valalang/lint

steps:
- uses: actions/checkout@v3
- name: Lint
run: |
io.elementary.vala-lint -d compositor
io.elementary.vala-lint -d src
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ name: Release

on:
pull_request:
branches: master
types: closed
branches: [master]
types: [closed]
jobs:
release:
runs-on: ubuntu-latest
Expand Down

0 comments on commit e28a0c8

Please sign in to comment.