Skip to content

Commit

Permalink
style: linted
Browse files Browse the repository at this point in the history
  • Loading branch information
kurone-kito committed Apr 24, 2024
1 parent 24813cd commit def7d2f
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 20 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/build-listing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,13 @@ on:
types:
- completed
release:
types:
- created
- deleted
- edited
- published
- released
- unpublished
types:
- created
- deleted
- edited
- published
- released
- unpublished

# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
Expand All @@ -28,7 +28,7 @@ permissions:

# Allow one concurrent deployment
concurrency:
group: "pages"
group: 'pages'
cancel-in-progress: true

jobs:
Expand Down
19 changes: 9 additions & 10 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,14 @@ jobs:
outputs:
config_package: ${{ steps.config_package.outputs.configPackage }}
steps:

- name: Ensure that required repository variable has been created for the Package
id: config_package
run: |
if [ "${{ vars.PACKAGE_NAME }}" != "" ]; then
echo "configPackage=true" >> $GITHUB_OUTPUT;
else
echo "configPackage=false" >> $GITHUB_OUTPUT;
fi
- name: Ensure that required repository variable has been created for the Package
id: config_package
run: |
if [ "${{ vars.PACKAGE_NAME }}" != "" ]; then
echo "configPackage=true" >> $GITHUB_OUTPUT;
else
echo "configPackage=false" >> $GITHUB_OUTPUT;
fi
build:
needs: config
Expand Down Expand Up @@ -60,7 +59,7 @@ jobs:
# cspell: disable-next-line
uses: rickstaa/action-create-tag@v1
with:
tag: "${{ env.version }}"
tag: '${{ env.version }}'
- name: Publish the Release to GitHub
uses: softprops/action-gh-release@v2
with:
Expand Down
4 changes: 2 additions & 2 deletions Website/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ h1 {
.vccUrlField {
min-width: 450px;
max-width: 90%;
flex-grow:1;
flex-grow: 1;
}

#addListingToVccHelp {
Expand Down Expand Up @@ -353,4 +353,4 @@ h1 {

.flex-1 {
flex: 1;
}
}

0 comments on commit def7d2f

Please sign in to comment.