Skip to content

Commit

Permalink
Merge pull request #2 from silinternational/develop
Browse files Browse the repository at this point in the history
Switch to GitHub Actions, update tfc-ops to 3.5.4
  • Loading branch information
devon-sil authored Mar 7, 2024
2 parents 781f263 + 69b953c commit 9e277d0
Show file tree
Hide file tree
Showing 6 changed files with 39 additions and 33 deletions.
2 changes: 0 additions & 2 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
*.aes
codeship-services.yml
codeship-steps.yml
dockercfg
*.env
37 changes: 37 additions & 0 deletions .github/workflows/build-and-publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
name: Build and Publish

on:
push:

jobs:
build-and-publish:
name: Build and Publish
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Log in to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}

- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@v5
with:
images: ${{ vars.DOCKER_ORG }}/${{ github.event.repository.name }}
tags: |
type=ref,event=branch
type=ref,event=tag
# set latest tag for master branch
type=raw,value=latest,enable=${{ github.ref == format('refs/heads/{0}', 'main') }}
- name: Build and push Docker image
uses: docker/build-push-action@v5
with:
context: .
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ FROM alpine:3
# Variables set with ARG can be overridden at image build time with
# "--build-arg var=value". They are not available in the running container.
ARG restic_ver=0.16.0
ARG tfc_ops_ver=3.5.1
ARG tfc_ops_distrib=tfc-ops_${tfc_ops_ver}_Linux_x86_64.tar.gz
ARG tfc_ops_ver=3.5.4
ARG tfc_ops_distrib=tfc-ops_Linux_x86_64.tar.gz

# Install Restic, tfc-ops, perl, and jq
RUN cd /tmp \
Expand Down
5 changes: 0 additions & 5 deletions codeship-services.yml

This file was deleted.

22 changes: 0 additions & 22 deletions codeship-steps.yml

This file was deleted.

2 changes: 0 additions & 2 deletions dockercfg.encrypted

This file was deleted.

0 comments on commit 9e277d0

Please sign in to comment.