Skip to content

Commit 7a52142

Browse files
authored
Switch to GHCR containers (#297)
1 parent 391fc4a commit 7a52142

3 files changed

Lines changed: 15 additions & 6 deletions

File tree

.github/workflows/gettext.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@ name: Gettext Updates
22

33
on:
44
push:
5-
branches: master
5+
branches: [master]
66

77
jobs:
88
build:
99
runs-on: ubuntu-22.04
1010
container:
11-
image: elementary/docker:next-unstable
11+
image: ghcr.io/elementary/docker:next-unstable
1212

1313
steps:
1414
- name: Install git

.github/workflows/main.yml

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,22 @@
11
name: CI
22

3-
on: [push, pull_request]
3+
on:
4+
pull_request:
5+
types:
6+
- opened
7+
- reopened
8+
- synchronize
49

510
jobs:
611
build:
712
runs-on: ubuntu-latest
813

14+
strategy:
15+
fail-fast: false
16+
matrix:
17+
version: [stable, unstable, development-target]
918
container:
10-
image: elementary/docker:unstable
19+
image: ghcr.io/elementary/docker:${{ matrix.version }}
1120

1221
steps:
1322
- uses: actions/checkout@v3

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ name: Release
22

33
on:
44
pull_request:
5-
branches: master
6-
types: closed
5+
branches: [master]
6+
types: [closed]
77
jobs:
88
release:
99
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)