Skip to content

Commit

Permalink
GitHub actions (#118)
Browse files Browse the repository at this point in the history
* chore: change tags to build

* docs: remove not needed arm instructions
  • Loading branch information
ellite authored Feb 17, 2024
1 parent dd02eca commit 03b175d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 14 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/build-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ env:
REGISTRY: docker.io
REGISTRY_USERNAME: ${{ secrets.DOCKERHUB_USERNAME }}
REGISTRY_PASSWORD: ${{ secrets.DOCKERHUB_TOKEN }}
IMAGE_NAME: bellamy/wallos
IMAGE_NAME: ${{ vars.DOCKERHUB_TAG }}
# For release-please, see available types at https://github.com/google-github-actions/release-please-action/tree/v4/?tab=readme-ov-file#release-types-supported
PROJECT_TYPE: simple
jobs:
Expand Down Expand Up @@ -44,11 +44,10 @@ jobs:
tags=""
if [[ "$is_release" = 'true' ]]; then
tags="type=semver,pattern={{version}},value=$version
type=semver,pattern={{major}},value=$version
type=semver,pattern={{major}}.{{minor}},value=$version"
type=ref,event=branch,value=main"
else
tags="type=ref,event=branch
type=ref,event=pr"
type=ref,event=pr"
fi
{
echo 'tags<<EOF'
Expand Down
10 changes: 0 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -93,16 +93,6 @@ docker run -d --name wallos -v /path/to/config/wallos/db:/var/www/html/db \
bellamy/wallos:latest
```

For ARM processors you need to use the tag main

```bash
docker run -d --name wallos -v /path/to/config/wallos/db:/var/www/html/db \
-v /path/to/config/wallos/logos:/var/www/html/images/uploads/logos \
-e TZ=Europe/Berlin -p 8282:80 --restart unless-stopped \
bellamy/wallos:main
```


### Docker Compose

```
Expand Down

0 comments on commit 03b175d

Please sign in to comment.