Skip to content

Commit

Permalink
skip package
Browse files Browse the repository at this point in the history
  • Loading branch information
acgotaku committed Jul 3, 2022
1 parent 8b37148 commit 4541fde
Showing 1 changed file with 26 additions and 26 deletions.
52 changes: 26 additions & 26 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,35 +28,35 @@ jobs:
node-version: '16.x'
cache: 'pnpm'

- name: Install RX3-Creator
run: |
sudo add-apt-repository universe
sudo apt update
sudo apt install -y python2 vim-common
curl https://bootstrap.pypa.io/pip/2.7/get-pip.py --output get-pip.py
sudo python2 get-pip.py
git clone https://github.com/pawliczka/CRX3-Creator.git /tmp/CRX3-Creator
sudo pip2 install -r /tmp/CRX3-Creator/requirements.txt
- name: Install deps
run: pnpm install --frozen-lockfile

- name: Build 115
run: pnpm build

- name: Write pem to file
run: |
echo "$CHROME_PEM" > /tmp/chrome.pem
env:
CHROME_PEM: ${{ secrets.CHROME_PEM }}

- name: Package 115
run: |
python /tmp/CRX3-Creator/main.py -o 115-${{ github.ref_name }}.crx -pem /tmp/chrome.pem dist
# - name: Install RX3-Creator
# run: |
# sudo add-apt-repository universe
# sudo apt update
# sudo apt install -y python2 vim-common
# curl https://bootstrap.pypa.io/pip/2.7/get-pip.py --output get-pip.py
# sudo python2 get-pip.py
# git clone https://github.com/pawliczka/CRX3-Creator.git /tmp/CRX3-Creator
# sudo pip2 install -r /tmp/CRX3-Creator/requirements.txt

# - name: Install deps
# run: pnpm install --frozen-lockfile

# - name: Build 115
# run: pnpm build

# - name: Write pem to file
# run: |
# echo "$CHROME_PEM" > /tmp/chrome.pem
# env:
# CHROME_PEM: ${{ secrets.CHROME_PEM }}

# - name: Package 115
# run: |
# python /tmp/CRX3-Creator/main.py -o 115-${{ github.ref_name }}.crx -pem /tmp/chrome.pem dist

- name: Create release
uses: ncipollo/release-action@v1
with:
artifacts: 115-${{ github.ref_name }}.crx
# artifacts: 115-${{ github.ref_name }}.crx
tag: ${{ github.ref_name }}
name: Release ${{ github.ref_name }}

0 comments on commit 4541fde

Please sign in to comment.