Skip to content
Compare
Choose a tag to compare
@bacongobbler bacongobbler released this 02 Mar 18:28
· 12 commits to main since this release
v2.0.0
67563b8

PLEASE READ ME BEFORE UPGRADING

This is a major release, breaking compatibility with older workflows. Due to a bug in with Github Action's handling of boolean values, the action now expects a string value as input.

When upgrading, please make sure to change any workflows from this:

sync: true

To this:

sync: 'true'

This forces Github's YAML parser to treat this value as a string rather than a boolean.

Changes since v1.2.0

Configurable Azure CLI Version

Users can now specify which version of the Azure CLI they wish to use via the cli_version flag:

      - uses: bacongobbler/[email protected]
        with:
          cli_version: 2.33.0
          source_dir: _dist
          container_name: www
          connection_string: ${{ secrets.ConnectionString }}
          extra_args: '--pattern *.tar.gz'

Overwrite flag

Azure CLI >= v2.34.0 now requires the user to specify the --overwrite true flag if they want to overwrite assets in the destination container. Many workflows relied on this default behaviour to upload nightly releases of their application. An overwrite flag was introduced in 2.0.0 to make this simpler:

      - uses: bacongobbler/[email protected]
        with:
          source_dir: _dist
          container_name: www
          connection_string: ${{ secrets.ConnectionString }}
          extra_args: '--pattern *.tar.gz'
          overwrite: 'true'

the default is false, preventing the action from overwriting existing blobs in the destination container.

sync flag no longer required

As part of the recent parser changes, the sync flag is no longer a required flag. The default value is false.