Skip to content

Commit

Permalink
fix syntax error
Browse files Browse the repository at this point in the history
  • Loading branch information
typeling1578 authored Nov 1, 2024
1 parent 8a63d78 commit 7776809
Showing 1 changed file with 23 additions and 23 deletions.
46 changes: 23 additions & 23 deletions .github/workflows/update-latest-json-portable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,31 +4,31 @@

name: Update Floorp-Portable version
on:
workflow_dispatch:
inputs:
display-version:
description: 'Display version of the update'
required: true
type: string
workflow_dispatch:
inputs:
display-version:
description: 'Display version of the update'
required: true
type: string

jobs:
update-latest-json:
runs-on: ubuntu-latest
steps:
- name: Details
run: |
update-latest-json:
runs-on: ubuntu-latest
steps:
- name: Details
run: |
echo "Display version: ${{ github.event.inputs.display-version }}"
- name: Checkout
uses: actions/checkout@v2
- name: Checkout
uses: actions/checkout@v2

- name: Git config
run: |
- name: Git config
run: |
git config --global user.name "github-actions[bot]"
git config --global user.email "41898282+github-actions[bot]@users.noreply.github.com"
- name: get current version
run: |
- name: get current version
run: |
echo "Getting current version"
export CURRENT_VERSION=`cat ./browser-portable/latest.json | jq -r ".[].version" | head -1`
echo "CURRENT_VERSION=$CURRENT_VERSION" >> $GITHUB_ENV
Expand All @@ -37,21 +37,21 @@ jobs:
false
fi
- name: Update latest.json
run: |
- name: Update latest.json
run: |
echo "Updating latest.json"
echo "new version: ${{ github.event.inputs.display-version }}"
echo "current version: ${{ env.CURRENT_VERSION }}"
sed -i 's/${{ env.CURRENT_VERSION }}/${{ github.event.inputs.display-version }}/g' ./browser-portable/latest.json
- name: Commit
run: |
- name: Commit
run: |
git add .
git commit -m "Update Floorp Portable version"
git push
- name: Waiting 10 seconds...
- name: Waiting 10 seconds...
run: |
sleep 10
- uses: ./.github/workflows/upload.yml
- uses: ./.github/workflows/upload.yml

0 comments on commit 7776809

Please sign in to comment.