Skip to content

Commit a58b116

Browse files
authored
Merge pull request #5 from linuxserver/reponame
Update repo name
2 parents c2c9102 + a6ade7c commit a58b116

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

.github/workflows/external_trigger.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
echo "> [!NOTE]" >> $GITHUB_STEP_SUMMARY
2424
echo "> External trigger running off of main branch. To disable this trigger, add \`rawtherapee_main\` into the Github organizational variable \`SKIP_EXTERNAL_TRIGGER\`." >> $GITHUB_STEP_SUMMARY
2525
printf "\n## Retrieving external version\n\n" >> $GITHUB_STEP_SUMMARY
26-
EXT_RELEASE=$(curl -u "${{ secrets.CR_USER }}:${{ secrets.CR_PAT }}" -sX GET "https://api.github.com/repos/beep6581/rawtherapee/releases/latest" | jq -r '. | .tag_name')
26+
EXT_RELEASE=$(curl -u "${{ secrets.CR_USER }}:${{ secrets.CR_PAT }}" -sX GET "https://api.github.com/repos/rawtherapee/rawtherapee/releases/latest" | jq -r '. | .tag_name')
2727
echo "Type is \`github_stable\`" >> $GITHUB_STEP_SUMMARY
2828
if [ -z "${EXT_RELEASE}" ] || [ "${EXT_RELEASE}" == "null" ]; then
2929
echo "> [!WARNING]" >> $GITHUB_STEP_SUMMARY

Dockerfile

+3-3
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ LABEL build_version="Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DA
1010
LABEL maintainer="aptalca"
1111

1212
# title
13-
ENV TITLE=RawTherapee
13+
ENV TITLE=RawTherapee
1414

1515
RUN \
1616
echo "**** add icon ****" && \
@@ -26,13 +26,13 @@ RUN \
2626
libgtk-3-0 && \
2727
echo "**** install rawtherapee from appimage ****" && \
2828
if [ -z ${RAWTHERAPEE_VERSION+x} ]; then \
29-
RAWTHERAPEE_VERSION=$(curl -sX GET "https://api.github.com/repos/beep6581/rawtherapee/releases/latest" \
29+
RAWTHERAPEE_VERSION=$(curl -sX GET "https://api.github.com/repos/rawtherapee/rawtherapee/releases/latest" \
3030
| awk '/tag_name/{print $4;exit}' FS='[""]'); \
3131
fi && \
3232
cd /tmp && \
3333
curl -o \
3434
/tmp/rawtherapee.app -L \
35-
"https://github.com/beep6581/rawtherapee/releases/download/${RAWTHERAPEE_VERSION}/RawTherapee_${RAWTHERAPEE_VERSION}_release.AppImage" && \
35+
"https://github.com/rawtherapee/rawtherapee/releases/download/${RAWTHERAPEE_VERSION}/RawTherapee_${RAWTHERAPEE_VERSION}_release.AppImage" && \
3636
chmod +x /tmp/rawtherapee.app && \
3737
./rawtherapee.app --appimage-extract && \
3838
mv squashfs-root /opt/rawtherapee && \

Jenkinsfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ pipeline {
1919
DOCKERHUB_TOKEN=credentials('docker-hub-ci-pat')
2020
QUAYIO_API_TOKEN=credentials('quayio-repo-api-token')
2121
GIT_SIGNING_KEY=credentials('484fbca6-9a4f-455e-b9e3-97ac98785f5f')
22-
EXT_USER = 'beep6581'
22+
EXT_USER = 'rawtherapee'
2323
EXT_REPO = 'rawtherapee'
2424
BUILD_VERSION_ARG = 'RAWTHERAPEE_VERSION'
2525
LS_USER = 'linuxserver'

jenkins-vars.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ release_type: stable
77
release_tag: latest
88
ls_branch: main
99
repo_vars:
10-
- EXT_USER = 'beep6581'
10+
- EXT_USER = 'rawtherapee'
1111
- EXT_REPO = 'rawtherapee'
1212
- BUILD_VERSION_ARG = 'RAWTHERAPEE_VERSION'
1313
- LS_USER = 'linuxserver'

0 commit comments

Comments
 (0)