Skip to content

Commit fb73508

Browse files
authored
Update Dependencies (#48)
1 parent c73f675 commit fb73508

File tree

5 files changed

+1570
-891
lines changed

5 files changed

+1570
-891
lines changed

.github/workflows/build.yaml

Lines changed: 4 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -15,20 +15,15 @@ jobs:
1515
- name: "Checkout"
1616
uses: actions/checkout@v4
1717

18-
- name: "Release Version Check"
19-
if: ${{ github.event_name == 'release' }}
20-
run: |
21-
export version="$(jq '.version' < manifest.json | tr -d '"')"
22-
if [ "${{ github.ref_name }}" != "${version}" ];then
23-
echo "Manifest Version ${version} does not match release tag ${{ github.ref_name }}"
24-
exit 1
25-
fi
26-
2718
- name: "Setup Node"
2819
uses: actions/setup-node@v4
2920
with:
3021
node-version: 20
3122

23+
- name: "Update Manifest Version"
24+
uses: cssnr/update-json-value-action@v1
25+
if: ${{ github.event_name == 'release' }}
26+
3227
- name: "Build All"
3328
run: |
3429
npm install

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
[![Chrome Web Store Version](https://img.shields.io/chrome-web-store/v/abpbiefojfkekhkjnpakpekkpeibnjej?label=chrome&logo=googlechrome)](https://chromewebstore.google.com/detail/django-files/abpbiefojfkekhkjnpakpekkpeibnjej)
44
[![Mozilla Add-on Version](https://img.shields.io/amo/v/django-files?label=firefox&logo=firefox)](https://addons.mozilla.org/addon/django-files)
55
[![GitHub Release Version](https://img.shields.io/github/v/release/django-files/web-extension?logo=github)](https://github.com/django-files/web-extension/releases/latest)
6-
[![Manifest Version](https://img.shields.io/github/manifest-json/v/django-files/web-extension?filename=manifest.json&logo=json&label=manifest)](https://github.com/django-files/web-extension/blob/master/manifest.json)
76
[![Build](https://github.com/django-files/web-extension/actions/workflows/build.yaml/badge.svg)](https://github.com/django-files/web-extension/actions/workflows/build.yaml)
87
[![Test](https://github.com/django-files/web-extension/actions/workflows/test.yaml/badge.svg)](https://github.com/django-files/web-extension/actions/workflows/test.yaml)
98
[![Codacy Badge](https://app.codacy.com/project/badge/Grade/7842944ada6b4c7ebb4f9dc83ed6a654)](https://app.codacy.com/gh/django-files/web-extension/dashboard?utm_source=gh&utm_medium=referral&utm_content=&utm_campaign=Badge_grade)

manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"manifest_version": 3,
3-
"version": "0.5.0",
3+
"version": "0.0.1",
44
"name": "Django Files",
55
"description": "Django Files Web Extension designed to work with github.com/django-files/django-files.",
66
"homepage_url": "https://github.com/django-files/web-extension",

0 commit comments

Comments
 (0)