We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
It would be nice to publish a github action that will run cybertron, as well as release a new version of a theme xml into a github release.
The text was updated successfully, but these errors were encountered:
Fixes #11 - html template allow list
501df6a
Here, I've put together a workflow for running cybertron on my own project:
https://github.com/DestinyWeaves/theme/blob/main/.github/workflows/cybertron.yml
name: Compile JCINK Theme using Cybertron on: push: branches: ["main"] workflow_dispatch: # Allows you to run this workflow manually from the Actions tab jobs: build: runs-on: ubuntu-latest steps: - name: Checkout uses: actions/checkout@v4 - name: Install Cybertron uses: sigoden/install-binary@v1 with: repo: magratheaguide/cybertron name: cybertron # tag: v1.1.0 - name: Build theme XML run: cybertron build --name "${{ vars.theme_name }}" - name: Upload artifact uses: actions/upload-artifact@v4 with: path: "${{ vars.theme_name }}.xml"
Sorry, something went wrong.
No branches or pull requests
It would be nice to publish a github action that will run cybertron, as well as release a new version of a theme xml into a github release.
The text was updated successfully, but these errors were encountered: