Merge pull request #2443 from resin-io/2442-update-package-repo-info

2442 update package repo info
This commit is contained in:
Lorenzo Alberto Maria Ambrosi 2018-09-28 08:37:16 +02:00 committed by GitHub
commit 7a2dac8d5b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 10 additions and 10 deletions

View File

@ -110,7 +110,7 @@ APPLICATION_NAME = $(shell jq -r '.displayName' package.json)
APPLICATION_DESCRIPTION = $(shell jq -r '.description' package.json) APPLICATION_DESCRIPTION = $(shell jq -r '.description' package.json)
APPLICATION_COPYRIGHT = $(shell cat electron-builder.yml | shyaml get-value copyright) APPLICATION_COPYRIGHT = $(shell cat electron-builder.yml | shyaml get-value copyright)
BINTRAY_ORGANIZATION = resin-io BINTRAY_ORGANIZATION = etcher
BINTRAY_REPOSITORY_DEBIAN = debian BINTRAY_REPOSITORY_DEBIAN = debian
BINTRAY_REPOSITORY_REDHAT = redhat BINTRAY_REPOSITORY_REDHAT = redhat

View File

@ -44,7 +44,7 @@ installers for all supported operating systems.
1. Add Etcher debian repository: 1. Add Etcher debian repository:
``` ```
echo "deb https://dl.bintray.com/resin-io/debian stable etcher" | sudo tee /etc/apt/sources.list.d/etcher.list echo "deb https://deb.etcher.io stable etcher" | sudo tee /etc/apt/sources.list.d/etcher.list
``` ```
2. Trust Bintray.com's GPG key: 2. Trust Bintray.com's GPG key:
@ -72,7 +72,7 @@ sudo apt-get update
1. Add Etcher rpm repository: 1. Add Etcher rpm repository:
```sh ```sh
sudo wget https://bintray.com/resin-io/redhat/rpm -O /etc/yum.repos.d/bintray-resin-io-redhat.repo sudo wget https://etcher.io/static/etcher-rpm.repo -O /etc/yum.repos.d/etcher-rpm.repo
``` ```
2. Update and install: 2. Update and install:
@ -89,14 +89,14 @@ sudo apt-get update
``` ```
sudo yum remove -y etcher-electron sudo yum remove -y etcher-electron
sudo rm /etc/yum.repos.d/bintray-resin-io-redhat.repo sudo rm /etc/yum.repos.d/etcher-rpm.repo
sudo yum clean all sudo yum clean all
sudo yum makecache fast sudo yum makecache fast
``` ```
or or
``` ```
sudo dnf remove -y etcher-electron sudo dnf remove -y etcher-electron
sudo rm /etc/yum.repos.d/bintray-resin-io-redhat.repo sudo rm /etc/yum.repos.d/etcher-rpm.repo
sudo dnf clean all sudo dnf clean all
sudo dnf makecache sudo dnf makecache
``` ```

View File

@ -166,10 +166,10 @@ export BINTRAY_API_KEY="youruserapikey"
``` ```
```bash ```bash
./scripts/publish/bintray.sh -c "etcher" -t "production" -v "1.2.1" -o "resin-io" -p "debian" -y "debian" -r "x64" -f "dist/etcher-electron_1.2.1_amd64.deb" ./scripts/publish/bintray.sh -c "etcher" -t "production" -v "1.2.1" -o "etcher" -p "debian" -y "debian" -r "x64" -f "dist/etcher-electron_1.2.1_amd64.deb"
./scripts/publish/bintray.sh -c "etcher" -t "production" -v "1.2.1" -o "resin-io" -p "debian" -y "debian" -r "x86" -f "dist/etcher-electron_1.2.1_i386.deb" ./scripts/publish/bintray.sh -c "etcher" -t "production" -v "1.2.1" -o "etcher" -p "debian" -y "debian" -r "x86" -f "dist/etcher-electron_1.2.1_i386.deb"
./scripts/publish/bintray.sh -c "etcher" -t "production" -v "1.2.1" -o "resin-io" -p "redhat" -y "redhat" -r "x64" -f "dist/etcher-electron-1.2.1.x86_64.rpm" ./scripts/publish/bintray.sh -c "etcher" -t "production" -v "1.2.1" -o "etcher" -p "redhat" -y "redhat" -r "x64" -f "dist/etcher-electron-1.2.1.x86_64.rpm"
./scripts/publish/bintray.sh -c "etcher" -t "production" -v "1.2.1" -o "resin-io" -p "redhat" -y "redhat" -r "x86" -f "dist/etcher-electron-1.2.1.i686.rpm" ./scripts/publish/bintray.sh -c "etcher" -t "production" -v "1.2.1" -o "etcher" -p "redhat" -y "redhat" -r "x86" -f "dist/etcher-electron-1.2.1.i686.rpm"
``` ```
### Uploading binaries to Amazon S3 ### Uploading binaries to Amazon S3

View File

@ -36,7 +36,7 @@ describe('Spectron', function () {
before('app:start', function () { before('app:start', function () {
app = new spectron.Application({ app = new spectron.Application({
path: entrypoint, path: entrypoint,
port: 9999, port: 9998,
args: [ '.' ] args: [ '.' ]
}) })