diff --git a/.gitea/workflows/0.6.13.yml b/.gitea/workflows/0.6.13.yml index e8d078b..583a3f7 100644 --- a/.gitea/workflows/0.6.13.yml +++ b/.gitea/workflows/0.6.13.yml @@ -8,6 +8,9 @@ concurrency: on: push: branches: [ "master" ] + paths-ignore: + - 'README.md' + - 'LICENSE' workflow_dispatch: jobs: diff --git a/README.md b/README.md index 7b8fbfb..85f5222 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ ```bash cd your/source/tree -podman run --rm -v "${PWD}":/src ghcr.io/cwpearson/cmake-format:0.6.13 cmake-format ... +podman run --rm -v "${PWD}":/src git.carlpearson.net/cwpearson/cmake-format:0.6.13 cmake-format ... ``` Inside the container, the working directory is /src, we use the volume mount to map the host working directory `${PWD}` into `/src`: `-v "${PWD}"/src`. @@ -16,8 +16,3 @@ podman build -f cmake-format-0.6.13.dockerfile -t cmake-format:0.6.13 podman run --rm -v "${PWD}":/src cmake-format:0.6.13 cmake-format ... ``` -## Deploy - -1. Create a "personal access token (classic)" with `write:packages` - * account > settings > developer settings > personal access tokens -2. Put that personal access token as the repository secret `GHCR_TOKEN`.