Skip to content

Commit

Permalink
Updated CI/CD
Browse files Browse the repository at this point in the history
  • Loading branch information
jonerickson committed Aug 14, 2023
1 parent a878d35 commit 9ab71a3
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ jobs:
with:
context: .
push: true
tags: deschutesdesigngroupllc/perscom:${{ steps.tag_version.outputs.new_version }}
tags: ghcr.io/deschutesdesigngroupllc/perscom:${{ steps.tag_version.outputs.new_version }}

- name: Create Github Release
uses: ncipollo/release-action@v1
Expand Down
2 changes: 2 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
FROM php:8.1-cli

LABEL org.opencontainers.image.source="https://github.com/DeschutesDesignGroupLLC/perscom-cli"

RUN apt-get update \
&& apt-get install -y wget \
&& rm -rf /var/lib/apt/lists/*
Expand Down
10 changes: 4 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@ The PERSCOM CLI can be accessed and executed through various methods, each prese
Retrieve the Docker image from the registry.

```bash
docker pull deschutesdesigngroupllc/perscom-cli
docker pull ghcr.io/deschutesdesigngroupllc/perscom
```

Execute the PERSCOM CLI using this command.

```bash
docker run --rm -it deschutesdesigngroupllc/perscom <command> [options] [arguments]
docker run --rm -it ghcr.io/deschutesdesigngroupllc/perscom <command> [options] [arguments]
```

### PHAR Method
Expand Down Expand Up @@ -50,7 +50,7 @@ Discover the list of commands using the `list` command.

**Docker**:
```bash
docker run --rm -it deschutesdesigngroupllc/perscom list
docker run --rm -it ghcr.io/deschutesdesigngroupllc/perscom list
```

**PHAR**:
Expand All @@ -64,16 +64,14 @@ For each command, valuable instructions are accessible via the `--help` argument

**Docker**:
```bash
docker run --rm -it deschutesdesigngroupllc/perscom <command> --help
docker run --rm -it ghcr.io/deschutesdesigngroupllc/perscom <command> --help
```

**PHAR**:
```bash
php perscom <command> --help
```

Enhance your personnel data management using the PERSCOM CLI's intuitive interface.

## Documentation

Further documentation can be reach at [https://docs.perscom.io](https://docs.perscom.io).

0 comments on commit 9ab71a3

Please sign in to comment.