Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: SubtitleEdit/plugins
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: main
Choose a base ref
...
head repository: SubtitleEdit/plugins
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: github-actions
Choose a head ref
Checking mergeability… Don’t worry, you can still create the pull request.
  • 9 commits
  • 2 files changed
  • 1 contributor

Commits on Nov 23, 2024

  1. Simplify plugin upload workflow

    Replaced individual plugin upload steps with a single reusable `plugin-update` action to streamline the GitHub Actions workflow. This change improves maintainability by reducing redundant code and centralizing the upload logic.
    ivandrofly committed Nov 23, 2024
    Configuration menu
    Copy the full SHA
    7f9456d View commit details
    Browse the repository at this point in the history
  2. Update GitHub Action to include separate upload steps

    Renamed and split the plugin upload steps in the workflow for better clarity and organization. Added specific names for each upload action, differentiating between HI2UC and HIColorer uploads.
    ivandrofly committed Nov 23, 2024
    Configuration menu
    Copy the full SHA
    b009343 View commit details
    Browse the repository at this point in the history
  3. Add plugin upload GitHub Action

    This action uploads a specified plugin file as an artifact. It has a required input for the file name and uses the `upload-artifact` action to perform the upload. Former individual upload steps are replaced by a single step that takes the file name as an input.
    ivandrofly committed Nov 23, 2024
    Configuration menu
    Copy the full SHA
    559672e View commit details
    Browse the repository at this point in the history
  4. Fix indentation mismatch in GitHub Actions workflow

    Corrected the indentation under the 'Upload HI2UC' and 'Upload HIColorer' steps to ensure the workflow executes correctly. Indentation consistency is crucial for proper parsing of the YAML file in GitHub Actions.
    ivandrofly committed Nov 23, 2024
    Configuration menu
    Copy the full SHA
    a9b8cee View commit details
    Browse the repository at this point in the history
  5. Update plugin upload path in workflow

    Changed the path used to upload the HIColorer plugin in the GitHub Actions workflow. It now correctly points to the plugin-upload directory instead of the plugin-update directory.
    ivandrofly committed Nov 23, 2024
    Configuration menu
    Copy the full SHA
    3d58ffc View commit details
    Browse the repository at this point in the history
  6. Refactor plugin upload job using matrix strategy

    Simplify the workflow by switching to a matrix strategy for uploading plugins. This change consolidates individual upload steps into a single matrix job, making the code cleaner and easier to maintain. Added a comment link to the GitHub actions documentation for clarity.
    ivandrofly committed Nov 23, 2024
    Configuration menu
    Copy the full SHA
    aab6afc View commit details
    Browse the repository at this point in the history
  7. Add checkout step to GitHub Actions workflow

    The checkout step is now included in the workflow to ensure the repository is available for subsequent steps. This change is crucial for successful artifact uploads and overall workflow execution.
    ivandrofly committed Nov 23, 2024
    Configuration menu
    Copy the full SHA
    1701236 View commit details
    Browse the repository at this point in the history
  8. Enable plugin uploads in GitHub Actions workflow

    Previously commented out upload steps for HI2UC and HIColorer have been re-enabled. Additionally, the non-functional `upload-job` configuration has been commented out for clarity.
    ivandrofly committed Nov 23, 2024
    Configuration menu
    Copy the full SHA
    fe7efc3 View commit details
    Browse the repository at this point in the history

Commits on Nov 25, 2024

  1. Update MSBuild setup to version 2 in GitHub Actions

    The workflow file has been modified to use `microsoft/setup-msbuild@v2` instead of `v1`. This ensures compatibility with the latest features and improvements offered in the updated action.
    ivandrofly committed Nov 25, 2024
    Configuration menu
    Copy the full SHA
    3721969 View commit details
    Browse the repository at this point in the history
Loading