Fix expression and container name. #1

Merged
chris merged 4 commits from testing into main 2024-03-05 02:57:13 +00:00
Showing only changes of commit 21b4161bfe - Show all commits

View File

@@ -18,11 +18,14 @@ jobs:
build: build:
runs-on: cjyar-24 runs-on: cjyar-24
steps: steps:
- name: docker login
if: ${{ inputs.push == true }}
run: echo ${{ secrets.DOCKER_TOKEN }} | docker login -u cjyar --password-stdin
- uses: actions/checkout@v4 - uses: actions/checkout@v4
- name: build - name: build
run: docker build -t ${{ inputs.image_name }}:${{ github.run_number }} . run: docker build -t ${{ inputs.image_name }}:${{ github.run_number }} .
- name: push - name: push
if: ${{ inputs.push == true }} if: ${{ inputs.push == true }}
run: | run: |
docker create --name run_${{ github.run_number }} ${{ inputs.image_name }}:${{ github.run_number }} docker create --name run_${{ github.run_number }} ${{ inputs.image_name }}:${{ github.run_number }}
docker export -o /tmp/image run_${{ github.run_number }} docker export -o /tmp/image run_${{ github.run_number }}