Skip to content

Commit

Permalink
acin
Browse files Browse the repository at this point in the history
  • Loading branch information
Myndex committed Feb 1, 2023
1 parent 944d59e commit 318f421
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 20 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,5 @@ python_modules
package-lock.json
yarn.lock
*.log
.github/.DS_Store
.DS_Store
40 changes: 20 additions & 20 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,25 +26,25 @@ inputs:
VALIDATE_WEBIDL:
description: Validate Web IDL
default: true
VALIDATE_PUBRULES:
description: Validate against W3C Publication Rules
# VALIDATE_PUBRULES:
# description: Validate against W3C Publication Rules
default: false
W3C_API_KEY:
description: W3C API Key (required for VALIDATE_PUBRULES for now)
# W3C_API_KEY:
# description: W3C API Key (required for VALIDATE_PUBRULES for now)
GH_PAGES_BRANCH:
description: Provide a branch name to deploy to GitHub pages.
GH_PAGES_BUILD_OVERRIDE:
description: Override Bikeshed's metadata or ReSpec's respecConfig for GitHub Pages deployment.
GH_PAGES_TOKEN:
description: GitHub Personal access token. Required only if the default GitHub actions token doesn't have enough permissions.
W3C_ECHIDNA_TOKEN:
description: Echidna token
W3C_WG_DECISION_URL:
description: A URL to the working group decision to use auto-publish (usually from a w3c mailing list).
W3C_BUILD_OVERRIDE:
description: Override Bikeshed's metadata or ReSpec's respecConfig for W3C deployment and validations.
W3C_NOTIFICATIONS_CC:
description: Comma separated list of email addresses to CC
# W3C_ECHIDNA_TOKEN:
# description: Echidna token
# W3C_WG_DECISION_URL:
# description: A URL to the working group decision to use auto-publish (usually from a w3c mailing list).
# W3C_BUILD_OVERRIDE:
# description: Override Bikeshed's metadata or ReSpec's respecConfig for W3C deployment and validations.
# W3C_NOTIFICATIONS_CC:
# description: Comma separated list of email addresses to CC

runs:
using: composite
Expand Down Expand Up @@ -156,14 +156,14 @@ runs:
INPUTS_DEPLOY: ${{ steps.prepare.outputs.deploy && toJson(fromJson(steps.prepare.outputs.deploy).ghPages) }}
OUTPUT_DIR: ${{ steps.build.outputs.gh && fromJson(steps.build.outputs.gh).root }}

- name: Deploy to W3C
run: |
echo "::group::SKIPPING"
echo "::endgroup::"
shell: bash
env:
INPUTS_DEPLOY: ${{ steps.prepare.outputs.deploy && toJson(fromJson(steps.prepare.outputs.deploy).w3c) }}
OUTPUTS_BUILD: ${{ steps.build.outputs.w3c && toJson(fromJson(steps.build.outputs.w3c)) }}
# - name: Deploy to W3C
# run: |
# echo "::group::SKIPPING"
# echo "::endgroup::"
# shell: bash
# env:
# INPUTS_DEPLOY: ${{ steps.prepare.outputs.deploy && toJson(fromJson(steps.prepare.outputs.deploy).w3c) }}
# OUTPUTS_BUILD: ${{ steps.build.outputs.w3c && toJson(fromJson(steps.build.outputs.w3c)) }}

- name: End
if: ${{ failure() }}
Expand Down

0 comments on commit 318f421

Please sign in to comment.