Contention
Contention

Reputation: 691

Is it possible to persist a WORKDIR between Actions in GitHub Actions?

I woke up to my GitHub Actions BETA invite this morning (wooo) and have started playing with it, with the aim of migrating some simple build, test and deploy pipelines I currently have running on CircleCI.

I'm still trying to get my head around Actions, but the flow I have in mind is that after a push, the first Action in the workflow will launch a Docker container. Inside that container I'll run some simple build processes such as minimising assets and removing artefacts. The next Action will then run some tests on the build. And the next Action(s) in the pipeline will deploy to one of a number of environments, depending on the branch I pushed to.

I've followed the docs at https://developer.github.com/actions/creating-github-actions/creating-a-docker-container/ and have a rudimentary workflow that launches a Docker container and runs some build commands inside the WORKDIR. I'm also able to run a deployment (via rsync) from inside this WORKDIR too.

However, I'd like to split this into separate steps/Actions, but I can't figure out a way to to this.

Essentially, this would be similar to the CircleCI jobs/workflow model I'm using. However, with CircleCI, the first job runs a build then persists the resulting directory structure throughout the rest of the workflow, like this:

# Persist dist directory
  - persist_to_workspace:
      root: ~/project
      paths:
        - .

So, I'm kinda equating CircleCI's Jobs to GitHub's Actions here, which is possibly the wrong thing to do? Essentially, what I'm trying to find out is whether I can persist a WORKDIR inside the first Action's Docker container and make that WORKDIR available to subsequent Actions.

Is this possible, or am I way off with what I'm imagining GitHub Actions can do?

Thanks!

Upvotes: 18

Views: 14160

Answers (4)

Milind Singh
Milind Singh

Reputation: 316

I have tried actions/upload-artifact@v3 but for large files like 1GB artifact it takes around ~40mins to compress and upload.

I would suggest to use actions/cache@v3 to share files across jobs which take ~2mins.


name: build-deploy

on:
  push:
    branches: [ production ]
  workflow_dispatch:

jobs:

  your-job-1:
      runs-on: ubuntu-latest
      name: 'build'

      steps:
      - name: Cache Build
        id: cache-build
        uses: actions/cache/save@v3
        with:
          path: ${{ github.workspace }}/your-folder-to-cache
          key: ${{ github.sha }}-your-cache-key

  your-job-2:
      runs-on: ubuntu-latest
      name: 'deploy'

      steps:
      - uses: actions/cache/restore@v3
        id: restore-build
        with:
          path: ${{ github.workspace }}/your-folder-to-cache
          key: ${{ github.sha }}-your-cache-key

  cleanup:
      runs-on: ubuntu-latest
      needs: ['your-job-1', 'your-job-2']
      name: 'cache cleanup'

      steps:
      - uses: adapttive/cache-delete
        with:
          github-token: ${{ secrets.ADMIN_GITHUB_TOKEN }}
          cache-key: ${{ github.sha }}-your-cache-key 

Also, you can use my action adapttive/cache-delete in cleanup job to delete cache post deployment.

Upvotes: 2

the Hutt
the Hutt

Reputation: 18398

I think actions/upload-artifact@v3 is the latest solution.

  - name: Create a file
    run: echo "I won't live long" > my_file.txt

  - name: Upload Artifact
    uses: actions/upload-artifact@v3
    with:
      name: my-artifact
      path: my_file.txt
      retention-days: 5

Real world example mdn/content repo:

  1. Build and upload happens in pr-test.yml
  2. The build is downloaded and deployed in pr-review-companion.yml

Upvotes: 0

Tiago Gouvêa
Tiago Gouvêa

Reputation: 16730

On my tests today, it cannot persist files between jobs. CircleCi does, there you can store some content to read on next jobs, but on GitHub Actions I can't.

Following, my tests:

Write file on a job, try to read on the next

Used test file.

1) Writing on GITHUB_WORKSPACE
My path: /home/runner/work/github-actions-test/github-actions-test)
Results: writeable and readble on first job, but, empty on second job Action link

2) Writing on /github/home
My path: /github/home
Results: cannot access '/github/home/ Action link

3) Writing on /home
My path: /home
Results: touch: cannot touch '/home/myFile.txt': Permission denied
Action link

Upvotes: 5

Contention
Contention

Reputation: 691

Answering this myself in case someone else runs into this issue (and, like me, didn't fully read the docs!). :o)

The docs here explain, but essentially the working directory of any container you start as part of an action exists as /github/workspace. Actions can modify the contents of this working directory, and when containers are started in subsequent actions during the workflow, the working directory for these actions/containers will contain the modifications made earlier in the workflow.

So, the answer is yes, the Docker WORKDIR at /github/workspace is persisted throughout a GitHub Actions workflow in a similar way to how it can persist in a CircleCI workflow.

Upvotes: 10

Related Questions