Skip to content
New issue

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

upload-artifact does not retain artifact permissions #38

Open
kcgen opened this issue Dec 5, 2019 · 36 comments
Open

upload-artifact does not retain artifact permissions #38

kcgen opened this issue Dec 5, 2019 · 36 comments

Comments

@kcgen
Copy link

kcgen commented Dec 5, 2019

The baseline behavior of the zip utilty on Linux and macOS is to retain permissions.

However, when the upload-artifact action zips a directory, it loses permissions, which subsequently breaks the artifacts for users and downstream tools.

Expected behavior: the permissions applied to assets in prior steps should be retained by the upload-artifact zipper, and should be present in the resulting asset zip file.

@kcgen kcgen changed the title upload-artifact loses file permissions when zipping the provided path upload-artifact loses file permissions Dec 5, 2019
@kcgen kcgen changed the title upload-artifact loses file permissions upload-artifact breaks file permissions Dec 5, 2019
@kcgen
Copy link
Author

kcgen commented Dec 6, 2019

Adding this issue to the download-artifact action, as that's where the zipping is currently performed in the v1 API. actions/download-artifact#14.
Will leave this open in both repos open until it's solved (however github wants to manage this in their backend for v2).

ghost pushed a commit to huntdatacenter/charm-megaraid-check that referenced this issue Jan 9, 2020
ghost pushed a commit to huntdatacenter/charm-megaraid-check that referenced this issue Jan 9, 2020
* Add bundle test to ci
* Remove juju 2.4
* Add jujuna timeout and dump debug-log on failure
* Add permissions workaround
  * See actions/upload-artifact#38 for upstream issue
emiliom added a commit to oceanhackweek/oceanhackweek.github.io that referenced this issue Mar 23, 2020
workaround actions/upload-artifact#38

I think I'm still missing something, but I don't see any negative consequences. Plus, when you tell me it's ready to merge, I merge! Ok, most of the time ...
osy pushed a commit to utmapp/UTM that referenced this issue Apr 3, 2020
@konradpabjan konradpabjan mentioned this issue Apr 13, 2020
@nhooyr
Copy link

nhooyr commented May 12, 2020

Can confirm that with unzip -Z on the resulting .zip, there are no executable permissions on files that should have executable perms.

@jrozner
Copy link

jrozner commented Jul 7, 2020

Is anything being done about this? It's been over 6 moths and this is the recommended way by GitHub to handle artifact upload

@adriangb
Copy link

This is still broken as of today, very annoying.

@bcardiff
Copy link

I am not proud of it, but actions/cache@v2 keeps the permissions. If the goal is to pass some artifacts between jobs the following is working for me so far.

      - name: Artifact (with permissions)
        uses: actions/cache@v2
        with:
          path: /path/to/store
          key: artifacts-${{ github.run_id }}-${{ github.run_number }}

@thetroy
Copy link

thetroy commented Sep 15, 2020

A workaround is documented in the readme

https:/actions/upload-artifact#maintaining-file-permissions-and-case-sensitive-files

  - name: 'Tar files'
    run: tar -cvf my_files.tar /path/to/my/directory

  - name: 'Upload Artifact'
    uses: actions/upload-artifact@v2
    with:
      name: my-artifact
      path: my_files.tar  

jbelien added a commit to osmbe/road-completion that referenced this issue Oct 14, 2020
Permission loss when artifact is uploaded.
Related to actions/upload-artifact#38
@pdmtt
Copy link

pdmtt commented Mar 4, 2024

This issue still persists as for 2024. Just lost some time trying to figure out why a downloaded artifact's permissions weren't as I expected them to be.

@rizface
Copy link

rizface commented Mar 30, 2024

I don't know whether this is a good way or not, whe i trying upload and download artifact which is a golang binary, i set permissions for the binary file on the job that needs execute it

chmod 777 <binary filename>

@Vacxe
Copy link

Vacxe commented Apr 3, 2024

Use tar for zipping archive and upload it as artefact
Example: https:/danger/kotlin/blob/master/.github/workflows/publish_release.yml#L60

@rmunn
Copy link

rmunn commented Apr 23, 2024

Looks like there's a PR that would fix half of this issue: actions/toolkit#1609. (Edit: Nope, see below). That would store file permissions in the .zip files created by upload-artifact; the next step after that would be to fix download-artifact to recreate those permissions, but that can't happen until the permissions actually exist in the .zip file.

But that PR has been sitting there for four months with no review from the GitHub Actions team yet. Hopefully someone from the GHA team will notice that PR and give it some attention soon.

UPDATE: Looks like that PR wouldn't work (the zip.append method wants a mode property, not stats) so I created actions/toolkit#1723 which is basically actions/toolkit#1609 but passing mode into zip.append.

@nsmithtt
Copy link

nsmithtt commented Sep 7, 2024

5 years later, still an issue. Couldn't the fix just be to tar before zipping automatically or just enable an option to use tar.gz instead of zip?

@rcdailey
Copy link

rcdailey commented Sep 7, 2024

Here is my workaround: https://gist.github.com/rcdailey/cd3437bb2c63647126aa5740824b2a4f

Basically involves three files, and two custom actions:

.github/
└── .actions/
    ├── .download-tar/
    │   ├── action.yml
    │   └── untar.sh
    └── .upload-tar/
        └── action.yml

Examples of how they're used in my workflow jobs:

- name: Upload Artifacts
  uses: ./.github/actions/upload-tar
  with:
    name: ${{ matrix.runtime }}
    path: publish

- name: Download Artifacts
  uses: ./.github/actions/download-tar
  with:
    name: ${{ matrix.runtime }}
    path: publish

They're very simplistic (mainly because this is all I need for my particular project) but I'm happy with them and they do their job. Hopefully these custom actions will help others.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests