Skip to content

Commit

Permalink
Fix build schedule (#22)
Browse files Browse the repository at this point in the history
* Update publish-image.yml
  • Loading branch information
1337-server authored Jul 14, 2022
1 parent feb62bb commit e6b84af
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/publish-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:

-
name: Set tag for non-default branch
if: steps.branch-name.outputs.is_default == 'false'
if: steps.branch-name.outputs.is_default == 'false' && steps.branch-name.outputs.default_branch != ''
run: |
echo "Branch name is ${{ steps.branch-name.outputs.ref_branch }}"
echo "Main name is ${{ steps.branch-name.outputs.default_branch }}"
Expand Down
20 changes: 10 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
# arm-dependencies

[![GitHub Workflow Status](https://img.shields.io/github/workflow/status/shitwolfymakes/arm-dependencies/publish-image)](https://github.com/shitwolfymakes/arm-dependencies/actions/workflows/publish-image.yml)
[![Docker](https://img.shields.io/docker/pulls/shitwolfymakes/arm-dependencies.svg)](https://hub.docker.com/r/shitwolfymakes/arm-dependencies)
[![GitHub Workflow Status](https://img.shields.io/github/workflow/status/automatic-ripping-machine/arm-dependencies/publish-image)](https://github.com/automatic-ripping-machine/arm-dependencies/actions/workflows/publish-image.yml)
[![Docker](https://img.shields.io/docker/pulls/automaticrippingmachine/arm-dependencies.svg)](https://hub.docker.com/r/automaticrippingmachine/arm-dependencies)

[![GitHub license](https://img.shields.io/github/license/shitwolfymakes/arm-dependencies)](https://github.com/shitwolfymakes/arm-dependencies/blob/main/LICENSE)
[![GitHub forks](https://img.shields.io/github/forks/shitwolfymakes/arm-dependencies)](https://github.com/shitwolfymakes/arm-dependencies/network)
[![GitHub stars](https://img.shields.io/github/stars/shitwolfymakes/arm-dependencies)](https://github.com/shitwolfymakes/arm-dependencies/stargazers)
[![GitHub issues](https://img.shields.io/github/issues/shitwolfymakes/arm-dependencies)](https://github.com/shitwolfymakes/arm-dependencies/issues)
[![GitHub pull requests](https://img.shields.io/github/issues-pr/shitwolfymakes/arm-dependencies)](https://github.com/shitwolfymakes/arm-dependencies/pulls)
[![GitHub license](https://img.shields.io/github/license/automatic-ripping-machine/arm-dependencies)](https://github.com/automatic-ripping-machine/arm-dependencies/blob/main/LICENSE)
[![GitHub forks](https://img.shields.io/github/forks/automatic-ripping-machine/arm-dependencies)](https://github.com/automatic-ripping-machine/arm-dependencies/network)
[![GitHub stars](https://img.shields.io/github/stars/automatic-ripping-machine/arm-dependencies)](https://github.com/automatic-ripping-machine/arm-dependencies/stargazers)
[![GitHub issues](https://img.shields.io/github/issues/automatic-ripping-machine/arm-dependencies)](https://github.com/automatic-ripping-machine/arm-dependencies/issues)
[![GitHub pull requests](https://img.shields.io/github/issues-pr/automatic-ripping-machine/arm-dependencies)](https://github.com/automatic-ripping-machine/arm-dependencies/pulls)

![PyPI - Python Version](https://img.shields.io/pypi/pyversions/django)

[![Discord](https://img.shields.io/discord/576479573886107699)](https://discord.gg/BCarpwC7qC)
[![Discord](https://img.shields.io/discord/576479573886107699)](https://discord.gg/FUSrn8jUcR)

## Overview
This repo codifies the requirements for building and running Automatic Ripping Machine, and provides a docker container that has everything preinstalled. All you need to do is install the ARM source and set up files.
Expand All @@ -23,7 +23,7 @@ The `arm-dependencies`Docker image is rebuilt every night, so you should always
### Git Repo
To add this manually, run the following command:
```shell
git submodule add -b main https://github.com/1337-server/arm-dependencies arm-dependencies
git submodule add -b main https://github.com/automatic-ripping-machine/arm-dependencies arm-dependencies
git submodule update --init --recursive
git config -f .gitmodules submodule.arm-dependencies.update rebase
git submodule update --remote
Expand All @@ -37,7 +37,7 @@ In your fork's `requirements.txt`, replace everything with
### Docker Container
To base your docker container on `arm-dependencies`, add this to the top of your `Dockerfile`:
```dockerfile
FROM 1337server/arm-dependencies AS base
FROM automaticrippingmachine/arm-dependencies AS base
```

To start the rsyslog service included in this container, add the following command before the command to run `armui.py` in your `Dockerfile`:
Expand Down

0 comments on commit e6b84af

Please sign in to comment.