Change docker registry to ghcr.io

This commit is contained in:
Maschell 2023-03-16 12:46:07 +01:00
parent 7f68073112
commit 85a6e35188
6 changed files with 47 additions and 29 deletions

View File

@ -9,7 +9,7 @@ jobs:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
- name: clang-format - name: clang-format
run: | run: |
docker run --rm -v ${PWD}:/src wiiuenv/clang-format:13.0.0-2 -r ./include ./libraries docker run --rm -v ${PWD}:/src ghcr.io/wiiu-env/clang-format:13.0.0-2 -r ./include ./libraries
build-lib: build-lib:
runs-on: ubuntu-22.04 runs-on: ubuntu-22.04
needs: clang-format-lib needs: clang-format-lib
@ -29,7 +29,7 @@ jobs:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
- name: clang-format - name: clang-format
run: | run: |
docker run --rm -v ${PWD}:/src wiiuenv/clang-format:13.0.0-2 -r ./plugins/example_plugin/src docker run --rm -v ${PWD}:/src ghcr.io/wiiu-env/clang-format:13.0.0-2 -r ./plugins/example_plugin/src
build-examples: build-examples:
runs-on: ubuntu-22.04 runs-on: ubuntu-22.04
needs: clang-format-examples needs: clang-format-examples

View File

@ -3,6 +3,11 @@ on:
push: push:
branches: branches:
- master - master
env:
REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.repository }}
jobs: jobs:
clang-format-lib: clang-format-lib:
runs-on: ubuntu-22.04 runs-on: ubuntu-22.04
@ -10,7 +15,7 @@ jobs:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
- name: clang-format - name: clang-format
run: | run: |
docker run --rm -v ${PWD}:/src wiiuenv/clang-format:13.0.0-2 -r ./include ./libraries docker run --rm -v ${PWD}:/src ghcr.io/wiiu-env/clang-format:13.0.0-2 -r ./include ./libraries
build-lib: build-lib:
runs-on: ubuntu-22.04 runs-on: ubuntu-22.04
needs: clang-format-lib needs: clang-format-lib
@ -26,7 +31,7 @@ jobs:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
- name: clang-format - name: clang-format
run: | run: |
docker run --rm -v ${PWD}:/src wiiuenv/clang-format:13.0.0-2 -r ./plugins/example_plugin/src docker run --rm -v ${PWD}:/src ghcr.io/wiiu-env/clang-format:13.0.0-2 -r ./plugins/example_plugin/src
build-examples: build-examples:
runs-on: ubuntu-22.04 runs-on: ubuntu-22.04
needs: clang-format-examples needs: clang-format-examples
@ -37,23 +42,36 @@ jobs:
docker build . -f Dockerfile.buildexamples -t builder docker build . -f Dockerfile.buildexamples -t builder
cd ./plugins/example_plugin cd ./plugins/example_plugin
docker run --rm -v ${PWD}:/project builder make docker run --rm -v ${PWD}:/project builder make
push_image: build-and-push-image:
runs-on: ubuntu-latest runs-on: ubuntu-latest
needs: [build-lib, build-examples] permissions:
contents: read
packages: write
steps: steps:
- uses: actions/checkout@master - name: Checkout repository
- name: Get release version uses: actions/checkout@v3
id: get_release_tag - name: Extract Docker metadata
run: | id: meta
echo RELEASE_VERSION=$(echo $(date '+%Y%m%d')) >> $GITHUB_ENV uses: docker/metadata-action@v4
echo REPOSITORY_NAME=$(echo "$GITHUB_REPOSITORY" | awk -F / '{print $2}' | sed -e "s/:refs//" | tr '[:upper:]' '[:lower:]') >> $GITHUB_ENV with:
echo REPOSITORY_OWNER=$(echo "$GITHUB_REPOSITORY" | awk -F / '{print $1}' | sed 's/[^a-zA-Z0-9]//g' | tr '[:upper:]' '[:lower:]') >> $GITHUB_ENV images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
- name: Publish to Registry tags: |
uses: elgohr/Publish-Docker-Github-Action@master type=raw,value={{date 'YYYYMMDD'}}-{{sha}}
with: type=raw,value={{date 'YYYYMMDD'}}
name: ${{ env.REPOSITORY_OWNER }}/${{ env.REPOSITORY_NAME }} type=raw,value=latest
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }} - name: Log into registry ${{ env.REGISTRY }}
snapshot: true uses: docker/login-action@v2.1.0
cache: true with:
tags: "latest, ${{ env.RELEASE_VERSION }}" registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.CI_PAT_WRITE_PACKAGE }}
- name: Build and push Docker image
uses: docker/build-push-action@v4
with:
context: .
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
push: true

View File

@ -1,4 +1,4 @@
FROM wiiuenv/devkitppc:20230218 FROM ghcr.io/wiiu-env/devkitppc:20230218
WORKDIR tmp_build WORKDIR tmp_build
COPY . . COPY . .

View File

@ -1,4 +1,4 @@
FROM wiiuenv/devkitppc:20230218 FROM ghcr.io/wiiu-env/devkitppc:20230218
WORKDIR tmp_build WORKDIR tmp_build
COPY . . COPY . .
@ -8,7 +8,7 @@ WORKDIR /artifacts
FROM scratch as libwups FROM scratch as libwups
COPY --from=0 /artifacts /artifacts COPY --from=0 /artifacts /artifacts
FROM wiiuenv/devkitppc:20230218 FROM ghcr.io/wiiu-env/devkitppc:20230218
COPY --from=libwups /artifacts $DEVKITPRO COPY --from=libwups /artifacts $DEVKITPRO

View File

@ -1,3 +1,3 @@
FROM wiiuenv/devkitppc:20230218 FROM ghcr.io/wiiu-env/devkitppc:20230218
WORKDIR project WORKDIR project

View File

@ -20,12 +20,12 @@ Then you can compile and install this lib via `make install`.
A prebuilt version of this lib can found on dockerhub. To use it for your projects, add this to your Dockerfile. A prebuilt version of this lib can found on dockerhub. To use it for your projects, add this to your Dockerfile.
``` ```
[...] [...]
COPY --from=wiiuenv/wiiupluginsystem:[tag] /artifacts $DEVKITPRO COPY --from=ghcr.io/wiiu-env/wiiupluginsystem:[tag] /artifacts $DEVKITPRO
[...] [...]
``` ```
Replace [tag] with a tag you want to use, a list of tags can be found [here](https://hub.docker.com/r/wiiuenv/wiiupluginsystem/tags). Replace [tag] with a tag you want to use, a list of tags can be found [here](https://github.com/wiiu-env/WiiUPluginSystem/pkgs/container/wiiupluginsystem/versions).
It's highly recommended to pin the version to the **latest date** instead of using `latest`. It's highly recommended to pin the version to the **latest date** instead of using `latest`.
## Format the code via docker ## Format the code via docker
`docker run --rm -v ${PWD}:/src wiiuenv/clang-format:13.0.0-2 -r ./include ./libraries ./plugins/example_plugin/src -i` `docker run --rm -v ${PWD}:/src ghcr.io/wiiu-env/clang-format:13.0.0-2 -r ./include ./libraries ./plugins/example_plugin/src -i`